这里我试图制作一个简单的Android应用程序来模拟销售人员的工作,就像这个picture,
我从字符串列表中的Web服务收到项目的数量,价格和数量我发现这个Tutorial可以解决我的问题,但我无法自定义它来传递我检索的字符串列表来自我的网络服务。
这是我的网络服务代码:
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;
}