Java - JSON数组 - > showMessageDialog?

时间:2015-08-09 18:48:38

标签: java php arrays json

我尝试将PHP中的文件列表发送到我的Java程序。我认为JSON是一个好主意所以我最终得到了这个JSON数组:

{"0":"File1.png","1":"File2.png","2":"File3.html"}

现在我希望Java在showMessageDialog上显示这样的文件:

Your Files:
File1.png 
File2.png
File3.html

任何人都可以帮我吗?

我有什么:

String fileurl = "http://my.website/the/json/file/list";
String jsonStr = getHTML(fileurl); //getHTML => Gets the JSON Code 
System.out.println(jsonStr); //Just for testing reasons
//JSON Array to Java Array here?
JTextArea ausgabeBereich = new JTextArea(10, 10); //Creating a JTextArea 
JScrollPane scroller = new JScrollPane(ausgabeBereich); //With a ScrollPane
String ausgabe = "Your Files\n";
ausgabe += //Adding the files here?
ausgabeBereich.setText(ausgabe); //Set the text of the TextArea
JOptionPane.showMessageDialog(null,scroller,"Dateien",
JOptionPane.PLAIN_MESSAGE);  // Shows the Windows

0 个答案:

没有答案