从文件中读取 JSON 数据以用于 StringEntity

Read JSON data from a file for use in StringEntity

我正在尝试从 JSON 文本文件中读取简单数据并转换为 StringEntity 以便在 API POST 请求中使用。虽然如果数据被硬编码为 StringEntity,我的 API post 请求工作正常,但我正在努力成功解析数据。我在谷歌上搜索过的所有预期解决方案都涉及数组,这对我来说过于复杂。

这是 JSON 文本文件的示例:

{
"data":"d1",
"data2":"d2",
"data3":"d3"
}

这是我用来尝试导入数据的代码。

JSONParser parser = new JSONParser();
    JSONObject a = new JSONObject();
    try {
        FileReader fileReader = new FileReader("/directory/file.json");
        a = (JSONObject) parser.parse(fileReader);
        } catch (Exception e1) {
        e1.printStackTrace();
        }
String data = a.toString();
StringEntity entity = new StringEntity(data);   
entity.setContentType(ContentType.APPLICATION_JSON.getMimeType());
request.addHeader("Accept", acceptHeader);
    request.setEntity(entity);
    HttpResponse response = client.execute(request);

我觉得我在这里的某个地方真的很愚蠢。我是新手。当它起作用时,StringEntity 是这样硬编码的,所以这就是我需要它导入和解析的方式:

StringEntity entity = new StringEntity("{\"data\":\"d1\",\"data2\":\"d2\",\"data3\":\"d3\"}");

类 使用:

import org.json.JSONObject;
import org.json.JSONArray;
import org.json.simple.parser.JSONParser;

以防万一其他人有兴趣...最终得到以下解决方案,因为不需要解析或格式化 JSON:

String data;
data = new String(Files.readAllBytes(Paths.get("file.json")));

需要的库:

import java.nio.file.Paths;
import java.nio.file.Files;

因为 Java 11 你可以做到

var content = Files.readString(Pahts.get("file.json"));
JSONObject json = (JSONObject) new JsonParser().parse(content);