java.lang.IllegalArgumentException:索引0中的方案中的非法字符:localhost

时间:2015-01-23 16:29:19

标签: java localhost spring-android

我正在开发一个从服务器接收数据的android应用程序(localhost - mssql和nodejs),保存数据然后显示它

收到服务器响应后,我收到此错误

我按照以下enter link description here的说明而不是我使用localhost的网络服务器。谢谢

 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$2.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$1.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)

4 个答案:

答案 0 :(得分:20)

您应该从网址中删除空格并定义方案http或https

答案 1 :(得分:0)

如果您使用的是localhost,则像这样传递网址- http://localhost:8080/api/notes  定义方案很重要(http / https) 也不要使用空间。

答案 2 :(得分:0)

尽管我们正在使用本地计算机上运行的任何服务,但请尝试使用http协议而不是直接调用服务来调用该服务。 示例:localhost:1234 / hello(错误将给出上述异常) enter image description here方式)

答案 3 :(得分:0)

确保 URL 中没有拼写错误,http:// 或 https://