Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
577 views
in Technique[技术] by (71.8m points)

swing - How to redirect console content to a textArea in Java?

I'm trying to get the content of console in a textArea in java.

For example if we have this code,

class FirstApp {
    public static void main (String[] args){
        System.out.println("Hello World");
    }
}

and I want to output the "Hello World" to a textArea, what actionPerformed do I have to choose?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Message Console shows one solution for this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...