如何将javap的输出获取到多个文本文件中。

huangapple go评论71阅读模式
英文:

How to get the output of javap to multiple text files

问题

我知道这是一个简单的问题,但我对编程还很陌生,我想知道是否有一种方法可以将javap文件的输出结果保存到多个不同命名的文本文件中。例如,在只有一个输出文件的情况下,可以使用以下命令:javap -c abc.class > 你想要的文件名.txt。那么如果我想要输出到多个不同唯一命名的文本文件中,该怎么办呢?

英文:

I know this is a simple question but I am quite new to programming and I want to know if there is a way to get the output of a javap file to multiple different named text files. Eg. In the case of one output file it would be javap -c abc.class > nameOfTheFileYouWant.txt what about in the event that where I want it to output more than one uniquely named text file.

答案1

得分: 1

如果您使用的是 bash,那么您可以使用如下所示的 tee 命令:

javap -c abc.class | tee file1.txt file2.txt file3.txt

在这个特定的示例中,相同的输出会被写入到三个文件 file1.txtfile2.txtfile3.txt

英文:

If you are using bash, then you can use tee command as shown below

javap -c abc.class | tee file1.txt file2.txt file3.txt

In this specific example same output will be written to three files file1.txt, file2.txt and file3.txt

答案2

得分: 0

"javap"工具用于获取任何类或接口的信息。"javap"命令会对一个或多个类文件进行反汇编。其输出取决于所使用的选项。如果未使用任何选项,"javap"会打印出传递给它的类的包、受保护和公共字段以及方法。"javap"将其输出打印到标准输出。

了解更多信息,请查看这个链接!

英文:

The javap tool is used to get the information of any class or interface.The javap command disassembles one or more class files. Its output depends on the options used. If no options are used, javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout.

For more info check this out!

huangapple
  • 本文由 发表于 2020年5月30日 23:35:25
  • 转载请务必保留本文链接:https://go.coder-hub.com/62104756.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定