我正在制作一个旅行计划桌面应用程序。我已经到了这么远,所以它只剩下清单了。我想将 Jlist 与 defaultListModel 或其他东西一起使用。但是我如何列出所有这样的???
我想得到的结果是这样的:
line : Spårvagn 6
direction : Kortedala via Sahlgrenska
Starting Location : Brunnsparken, Göteborg
time : 17:27
date : 2013-04-03
track : E
Destination : Svingeln, Göteborg
time : 17:56
date : 2013-04-03
track : B
line : Spårvagn 1
direction : Östra Sjukhuset
Starting Location : Brunnsparken, Göteborg
time : 17:30
date : 2013-04-03
track : D
Destination : Svingeln, Göteborg
time : 17:36
date : 2013-04-03
track : B
line : Spårvagn 3
direction : Kålltorp
Starting Location : Brunnsparken, Göteborg
time : 17:35
date : 2013-04-03
track : D
Destination : Svingeln, Göteborg
time : 17:41
date : 2013-04-03
track : B
line : Spårvagn 6
direction : Kortedala via Sahlgrenska
Starting Location : Brunnsparken, Göteborg
time : 17:36
date : 2013-04-03
track : E
Destination : Svingeln, Göteborg
time : 18:05
date : 2013-04-03
track : B
line : Spårvagn 1
direction : Östra Sjukhuset
Starting Location : Brunnsparken, Göteborg
time : 17:40
date : 2013-04-03
track : D
Destination : Svingeln, Göteborg
time : 17:46
date : 2013-04-03
track : B
我的代码:
JSONObject destination = (JSONObject) jsonObj.get("Destination");
String dname = (String) destination.get("name");
String dtime = (String) destination.get("time");
String ddate = (String) destination.get("date");
String dtrack =(String) destination.get("track");
//set the info about the destination
TripService.getTrip().setDate(date);
TripService.getTrip().setName(dname);
TripService.getTrip().setTime(dtime);
TripService.getTrip().setTrack(dtrack);
//Sets line and direction for all trips
/*
model.addElement("line : " + line);
model.addElement("direction : " + direction);
//set the info about the starting location
model.addElement("Starting Location : " + name);
model.addElement("Time : " + time);
model.addElement("Date : " + date);
model.addElement("Track : " + track);
*/
但它在我的控制台中返回一个 []。如何做到这一点
所有这些都仅在我的控制台中列出,并带有此输出。但我无法将其转移到我的应用程序中。出了什么问题以及如何做到这一点?