JOptionPane output text copy
问题 I have no experience with JOptionpane but I need a simple program to simplify my life. The code I need help with is below: public static void main (String[] args) { String input = ""; input = JOptionPane.showInputDialog("Enter code"); JOptionPane.showMessageDialog(null, toStringU(toArray(input)), "RESULT", JOptionPane.INFORMATION_MESSAGE); } toStringU method gives me a long long text I want to run it without any compiler (a standalone application, double click, put info and take results). And