每当我尝试在 Android 中运行单元测试时,我都会收到以下错误 - 在 Android 之外运行时通过的测试:
07-18 15:43:44.816: W/System.err(545): uk.co.redfruit.libraries.srpDB.exceptions.SRBClientException: java.io.FileNotFoundExce$
07-18 15:43:44.816: W/System.err(545): at uk.co.redfruit.libraries.srpDB.SRPDBClient.getContent(SRPDBClient.java:116)
07-18 15:43:44.816: W/System.err(545): at uk.co.monkeypower.android.straightrazordatabase.test.SRPDBClientTest.testGetConten$
07-18 15:43:44.826: W/System.err(545): at java.lang.reflect.Method.invokeNative(Native Method)
07-18 15:43:44.826: W/System.err(545): at java.lang.reflect.Method.invoke(Method.java:507)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestCase.runTest(TestCase.java:154)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestCase.runBare(TestCase.java:127)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestResult$1.protect(TestResult.java:106)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestResult.runProtected(TestResult.java:124)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestResult.run(TestResult.java:109)
07-18 15:43:44.826: W/System.err(545): at junit.framework.TestCase.run(TestCase.java:118)
07-18 15:43:44.826: W/System.err(545): at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:169)
07-18 15:43:44.826: W/System.err(545): at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:154)
07-18 15:43:44.826: W/System.err(545): at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:529)
07-18 15:43:44.836: W/System.err(545): at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1448)
07-18 15:43:44.836: W/System.err(545): Caused by: java.io.FileNotFoundException: http://straightrazorplace.com/srpwiki/index.$
07-18 15:43:44.836: W/System.err(545): at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl.getIn$
07-18 15:43:44.836: W/System.err(545): at uk.co.redfruit.libraries.srpDB.SRPDBClient.getContent(SRPDBClient.java:106)
07-18 15:43:44.836: W/System.err(545): ... 13 more
我知道在 Android 4.x+ 中出现了一个错误,但在 Gingerbread 中运行时出现了完全相同的错误。
导致错误的代码如下:
StringBuilder stringBuilder = null;
try {
URL url = new URL(targetURL);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
BufferedReader reader = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
stringBuilder = new StringBuilder();
String content = null;
while ((content = reader.readLine()) != null) {
stringBuilder.append(content + "\n");
}
reader.close();
} catch (IOException e) {
throw new SRBClientException(e);
}
我的清单中有 INTERNET 权限,并且 url 确实存在 - 我可以在浏览器中访问它。谁能看到我哪里出错了或者我错过了什么?
更新:我尝试使用基本的 http 客户端作为尝试的解决方法。它没有用,但它提供了一个完全不同的错误。它表明我得到了一个 403,在之前的尝试中,它只是导致 FileNotFound,但这次也导致了 JSON 异常,因为返回的 html 错误消息不能(显然)被解析为 JSON。
我猜这是一个服务器端问题,虽然我对为什么我在 Android 中得到 403 感到困惑,但在其他情况下没有......