- 分享
- 0
- 人气
- 0
- 主题
- 31
- 帖子
- 840
- UID
- 24979
- 积分
- 1228
- 阅读权限
- 18
- 注册时间
- 2006-1-14
- 最后登录
- 2012-9-14
- 在线时间
- 1220 小时
|
是我的话, 我会写一个这样的 class- public class Item {
- String name, location;
- public Item () {
- // constructor }
- public void add(string name, string location) {
- // 加豆号在 name 和 location }
- public String toString() {
- // output 成你要的格式, 例如 return "ID \t name \t location" }
- }
复制代码 然后- Item[] items = new Item[ result_largest_ID ]; // 你的 result 里面最大的 ID
- for ( int n=0; n<items.length;n++ ) { items[n] = new Item(); } // initialize
- while ( result.next() ) { // result 是你的 SQL 后的, result set
- String name = result.getString("name");
- String location = result.getString("location");
- items.add(name, location);
- }
复制代码 最后用一个 for loop 来 output item[n].toString() 就好了.
SQL 的 syntax 我不是很确定, 不要全部照抄. 了解方式就好了. |
|