gpt4 book ai didi

java - JSONObject 在使用字符串实例化后返回非空值 "null"

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:03:24 25 4
gpt4 key购买 nike

我需要下载 JSON,然后将其存储在 JSONObject 中。

我正在使用 org.json.JSONArray。

这里是一个地方的所有代码:

import org.json.JSONException;
import org.json.JSONObject;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class Test
{
public static JSONObject getJSON()
{
try
{
URL uri = new URL("http://events.makeable.dk/api/getEvents");
HttpURLConnection urlConnection = (HttpURLConnection) uri.openConnection();
if (urlConnection.getResponseCode() != HttpURLConnection.HTTP_OK)
{
return null;
}

InputStream inputStream = urlConnection.getInputStream();

if (inputStream != null)
{
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"));
StringBuffer buffer = new StringBuffer();

try
{
String line;
while ((line = br.readLine()) != null)
{
buffer.append(line);
}
br.close();
}
catch (IOException e)
{
e.printStackTrace();
}



String json = buffer.toString();

JSONObject jObject = null;
try {
jObject = new JSONObject(json);
}
catch (JSONException e) {
e.printStackTrace();

}
int i = 1;
return jObject;
}
}
catch (Exception e)
{
e.printStackTrace();
}
return null;
}
}

测试方法

 @Test
public void addition_isCorrect() throws Exception
{
JSONObject json = Test.getJSON();
assertNotNull(json);
assertTrue(json.length()>0);
}

第一个断言通过,第二个不通过,导致长度 == 0。

我得到的是 this .值为字符串“null”的 JSONObject 对象。

没有抛出异常。我将缓冲区的内容写入文件并对其进行了验证,并且验证正常。

另一张图片http://i.imgur.com/P03MiEZ.png

为什么会这样?

Gradle

apply plugin: 'com.android.application'

android {

testOptions {
unitTests.returnDefaultValues = true
}
compileSdkVersion 23
buildToolsVersion "24.0.0 rc3"

defaultConfig {
applicationId "baaa.myapplication"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.+'
}

最佳答案

由于您正在使用 Junit 运行您的代码,因此它会在您计算机上的 SDK 上运行。此 SDK 不提供所有内容,有些只是一些骨架类,提供方法和文档的签名,但不提供代码。所以不能直接执行。

您需要导入库才能在测试时运行它。

testCompile 'org.json:json:the_correct_version'

在这里查看版本:

http://mvnrepository.com/artifact/org.json/json

这是基于这篇文章的答案:Android unit test not mocked

关于java - JSONObject 在使用字符串实例化后返回非空值 "null",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37389154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com