当前位置:编程学习 > JAVA >>

调用新浪API中的通过ID获得微博评论内容后,怎样将打印窗口里的信息保存成文件

我是调用的新浪API中的通过ID获得微博评论内容的类,即GetCommentById.java
其中最主要的执行语句是CommentWapper comment = cm.getCommentById(id);
该句中的getCommentById是:
public CommentWapper getCommentById(String id) throws WeiboException {
return Comment.constructWapperComments(client.get(
WeiboConfig.getValue("baseURL") + "comments/show.json",
new PostParameter[] { new PostParameter("id", id) }));
}
public static CommentWapper constructWapperComments(Response res) throws WeiboException {
JSONObject json = res.asJSONObject(); //asJSONArray();
try {
JSONArray comments = json.getJSONArray("comments");
int size = comments.length();
List<Comment> comment = new ArrayList<Comment>(size);
for (int i = 0; i < size; i++) {
comment.add(new Comment(comments.getJSONObject(i)));
}
long previousCursor = json.getLong("previous_curosr");
long nextCursor = json.getLong("next_cursor");
long totalNumber = json.getLong("total_number");
String hasvisible = json.getString("hasvisible");
return new CommentWapper(comment, previousCursor, nextCursor,totalNumber,hasvisible);
} catch (JSONException jsone) {
throw new WeiboException(jsone);
}
}
这里我每次执行,都可以在MyEclipse的Console(控制台)中看到所有我要的被打印出来的结果。但是,我想把这些结果保存成一个文件(如何写文件我知道如何写代码),但是这里我找不到它的输出语句。
请问谁用过,能否告知?感谢!
补充:Java ,  Java相关
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,