摘要:
public static void main(String[] args) { double a = 26765; int b = 45676; double c = a/b; double d = a/b/1.000; double e = a/1000.00; String result = 阅读全文
摘要:
controller层: public class Login{ public String confirmLogin(HttpServletRequest request) { Member member = memberService.checkIdAndToken(request); if(m 阅读全文
摘要:
public class XmltoJsonUtil { public static String xml2JSON(String xml) { JSONObject obj = new JSONObject(); try { InputStream is = new ByteArrayInputS 阅读全文