gpt4 book ai didi

java - 如何使用 com.strobel.decompiler.PlainTextOutput 在控制台中打印

转载 作者:行者123 更新时间:2023-12-01 13:18:09 27 4
gpt4 key购买 nike

我在我的应用程序中使用 Proycon 库,PlainTextOutput 是 Proycon 库中的一个类,

在谷歌搜索期间,我发现了下面给出的代码块。这意味着什么,我可以使用此代码打印到控制台吗?

com.strobel.decompiler.Decompiler.decompile(
"D:\\BuildConfig.class",new com.strobel.decompiler.PlainTextOutput(new java.io.OutputStreamWriter(System.out)));

最佳答案

这似乎是实现过程中的一个疏忽;它不会为您刷新Writer。试试这个:

final PrintWriter writer = new PrintWriter(System.out);

try {
com.strobel.decompiler.Decompiler.decompile(
"D:\\BuildConfig.class",
new com.strobel.decompiler.PlainTextOutput(writer)
);
}
finally {
writer.flush();
}

我会考虑在下一个 Procyon 版本中修复此问题。

关于java - 如何使用 com.strobel.decompiler.PlainTextOutput 在控制台中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22298263/

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