gpt4 book ai didi

java - 如何从 JSONObject 获取文件或流?

转载 作者:太空宇宙 更新时间:2023-11-04 09:07:52 24 4
gpt4 key购买 nike

如何将 Twitter4J 中的 JSONObject 转换为 IOFile 以与 BaseX 中的 JsonParser 一起使用?

因此,希望使用 Twitter4J 来获取文件或流。

JsonParser 查找 work with一个文件很好:

JsonParser

public JsonParser(IO source,
MainOptions opts,
JsonParserOptions jopts)
throws java.io.IOException

Constructor.

Parameters:
source - document source
opts - database options
jopts - parser options
Throws:
java.io.IOException - I/O exception

虽然其他IO有效:

org.basex.io
Class IO

java.lang.Object
org.basex.io.IO

Direct Known Subclasses:
IOContent, IOFile, IOStream, IOUrl

这里如何从 JSONObject 获取 File

Snippet使用 Twitter4J:

private JSONObject jsonOps(Status status) throws JSONException, BaseXException {
String string = TwitterObjectFactory.getRawJSON(status);
JSONObject json = new JSONObject(string);
String language = json.getString("lang");
log.fine(language);
return json;
}

最佳答案

JSONObject 写入来自 Twitter4J 的文件似乎可行,至少手动打开时文件看起来是正确的:

public void writeJsonToFile(String fileName) throws FileNotFoundException, UnsupportedEncodingException, IOException {
FileOutputStream fileOutputStream = null;
OutputStreamWriter outputStreamWriter = null;
BufferedWriter bufferedWriter = null;
fileOutputStream = new FileOutputStream(fileName);
outputStreamWriter = new OutputStreamWriter(fileOutputStream, "UTF-8");
bufferedWriter = new BufferedWriter(outputStreamWriter);
bufferedWriter.write(tweets.toString());
bufferedWriter.close();
outputStreamWriter.close();
fileOutputStream.close();
}

一旦写入文件,“解析”JSON 似乎很容易,或者至少实例化一个解析器,如下所示:

private void parseJsonFile(String fileName) throws IOException {
JsonParser jsonParser = new JsonParser(new IOFile(fileName), new MainOptions());
}

github 上的完整代码.

这绝不是一个完整的解决方案。事实上,将 JSON 写入文件似乎是一件很麻烦的事情——但事实就是如此。

似乎是将 JSON 数据从 Twitter4J 移动到 BaseX 的唯一方法,或者至少是最实用的方法。其他解决方案表示赞赏。

关于java - 如何从 JSONObject 获取文件或流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60015248/

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