| 1234567891011121314151617181920212223242526 |
- import com.happy.Model.weixin.Users;
- import net.sf.json.JSONObject;
- /**
- * 使用JAVA DOM PARSER:修改 XML 文件
- *
- * @author zfc
- * @date 2017年12月7日 下午8:31:55
- */
- public class test2 {
- public static void main(String[] args) throws InterruptedException {
- JSONObject obj = new JSONObject();
- Users users = new Users();
- users.setUser_phone("321");
- users.setUser_name("321");
- users.setContactId(3);
- obj.put("map", users);
- // System.out.printf(Func.parseStr(new Date()));
- // for (int i = 0; i < 10; i++) {
- // Thread.sleep(1000);
- // System.out.println(i);
- // }
- }
- }
|