java.lang.IllegalArgumentException:索引 0 处方案中的非法字符:localhost
java.lang.IllegalArgumentException: Illegal character in scheme at index 0: localhost
我正在开发一个 android 应用程序,它从服务器(本地主机 - mssql 和 nodejs)接收数据,保存数据然后显示它
收到服务器响应后我收到此错误
我按照下面的说明进行操作 enter link description here 而不是我使用本地主机的网络服务器。谢谢
Illegal character in scheme at index 0: 192.168.2.7:3000
java.net.URISyntaxException: Illegal character in scheme at index 0: 192.168.2.7:3000
at java.net.URI.validateScheme(URI.java:419)
at java.net.URI.parseURI(URI.java:363)
at java.net.URI.<init>(URI.java:204)
at cz.uhk.fim.jedlima3.searchrooms.asyncTask.DownloadDatabaseAsync.doInBackground(DownloadDatabaseAsync.java:30)
at cz.uhk.fim.jedlima3.searchrooms.asyncTask.DownloadDatabaseAsync.doInBackground(DownloadDatabaseAsync.java:15)
at android.os.AsyncTask.call(AsyncTask.java:287)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:137)
at android.os.AsyncTask$SerialExecutor.run(AsyncTask.java:230)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
at java.lang.Thread.run(Thread.java:864)
您应该从 url 中删除 space 并定义方案 http
或 https
如果您使用的是本地主机,则像这样传递 url-
http://localhost:8080/api/notes
定义方案很重要 (http/https)
也不要使用 space。
当我们在本地机器上使用 运行 的任何服务时,请尝试使用 http 协议调用该服务,而不是直接调用该服务。
例子:localhost:1234/hello(写错会给出上面的异常)
http://localhost:1234/hello(correct 方式)
请确保您在 URL、http:// 或 https://
中没有拼写错误
我正在开发一个 android 应用程序,它从服务器(本地主机 - mssql 和 nodejs)接收数据,保存数据然后显示它
收到服务器响应后我收到此错误
我按照下面的说明进行操作 enter link description here 而不是我使用本地主机的网络服务器。谢谢
Illegal character in scheme at index 0: 192.168.2.7:3000
java.net.URISyntaxException: Illegal character in scheme at index 0: 192.168.2.7:3000
at java.net.URI.validateScheme(URI.java:419)
at java.net.URI.parseURI(URI.java:363)
at java.net.URI.<init>(URI.java:204)
at cz.uhk.fim.jedlima3.searchrooms.asyncTask.DownloadDatabaseAsync.doInBackground(DownloadDatabaseAsync.java:30)
at cz.uhk.fim.jedlima3.searchrooms.asyncTask.DownloadDatabaseAsync.doInBackground(DownloadDatabaseAsync.java:15)
at android.os.AsyncTask.call(AsyncTask.java:287)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:137)
at android.os.AsyncTask$SerialExecutor.run(AsyncTask.java:230)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
at java.lang.Thread.run(Thread.java:864)
您应该从 url 中删除 space 并定义方案 http
或 https
如果您使用的是本地主机,则像这样传递 url- http://localhost:8080/api/notes 定义方案很重要 (http/https) 也不要使用 space。
当我们在本地机器上使用 运行 的任何服务时,请尝试使用 http 协议调用该服务,而不是直接调用该服务。 例子:localhost:1234/hello(写错会给出上面的异常) http://localhost:1234/hello(correct 方式)
请确保您在 URL、http:// 或 https://
中没有拼写错误