|
|
|
@ -686,6 +686,43 @@ public class TestService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void test15() throws IOException { |
|
|
|
|
File file = new File("F://response.json"); |
|
|
|
|
|
|
|
|
|
BufferedReader reader = new BufferedReader(new FileReader(file)); |
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
|
|
|
|
|
while (true) { |
|
|
|
|
String ms = reader.readLine(); |
|
|
|
|
if (StringUtil.isBlank(ms)) { |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
sb.append(ms); |
|
|
|
|
} |
|
|
|
|
JSONObject object = JSONObject.parseObject(sb.toString()); |
|
|
|
|
|
|
|
|
|
JSONArray arrag = object.getJSONArray("value"); |
|
|
|
|
|
|
|
|
|
for (int i = 0; i < arrag.size(); i++) { |
|
|
|
|
String sql ="update op_factory_order set business_model='opA' where shop_code= 'opB'"; |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = arrag.getJSONObject(i); |
|
|
|
|
|
|
|
|
|
String code =jsonObject.getString("Code"); |
|
|
|
|
String businessModel =jsonObject.getString("BusinessModel"); |
|
|
|
|
String replace = sql.replace("opA", businessModel).replace("opB", code); |
|
|
|
|
System.out.println(replace); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static Boolean readExcel(InputStream is, Class clazz){ |
|
|
|
|
BufferedInputStream bis = null; |
|
|
|
|
try { |
|
|
|
|