摘要:
//方式一 public static String ReadAsChars(HttpServletRequest request) { BufferedReader br = null; StringBuilder sb = new StringBuilder(""); try { br = request.getReader(); String str; while ((str = br.re 阅读全文
摘要:
import com.alibaba.fastjson.JSONObject; public class JsonTest { public static void main(String[] args) { // json串(以自己的为准) String str = "{"id":"75","shoppingCartItemList":[{"id":"4... 阅读全文
摘要:
import org.json.JSONObject; JSONObject jo = new JSONObject(new String(需要转换的字符串)); 阅读全文
摘要:
这里介绍参数传递的两种方式。 方式一:$0,$1,$2... 采用$0,$1,$2..等方式获取脚本命令行传入的参数 $0:脚本名称 $1....: 参数 例子: 方式二:getopts getopts引用的三个环境变量: OPTARG: 上一个由getopts内置命令处理的选项参数的值, opti 阅读全文