我正在尝试制作一个简单的 android 应用程序来模拟销售人员的工作,就像这张图片一样,
我从字符串列表中的 Web 服务收到商品、价格和商品数量,我发现本教程 可以解决我的问题,但我无法自定义它以传递从我的 Web 服务检索到的字符串列表。
这是我的网络服务代码:
public List<String> getProduct() {
try {
// Accessing driver from jar files
Class.forName("com.mysql.jdbc.Driver");
// here we create a variable for the connection called con
Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/db","root", "root");
// here we create our query
PreparedStatement statement= con.prepareStatement("select quantity,price,item FROM distribute");
//PreparedStatement statement2= con.prepareStatement("select Date FROM storage_other");
// Here we are going to create a variable to Execute the query
ResultSet rs=statement.executeQuery();
//int i=1;
while (rs.next()) {
ls6.add(rs.getString(1));
ls6.add(rs.getString(2));
ls6.add(rs.getString(3));
//i++;
}
//ls.toArray(ss);
} catch(Exception e) {
System.out.print(e);
}
//ls.toArray(ss);
return ls6;
}