|
|
|
|
@ -179,6 +179,9 @@ public void run() {
|
|
|
|
|
pathOrg.append(this.g_strFTP[0]);
|
|
|
|
|
|
|
|
|
|
StringBuilder path = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
path.append(this.g_strFTP[5]);path.append("/");
|
|
|
|
|
|
|
|
|
|
path.append(strarr[0].substring(0, 4));
|
|
|
|
|
path.append("/");
|
|
|
|
|
path.append(strarr[0].substring(4, 6));
|
|
|
|
|
@ -222,12 +225,11 @@ public void run() {
|
|
|
|
|
this.logger.debug("=== pathOrg.toString() : " + pathOrg.toString());
|
|
|
|
|
this.logger.debug("=== path.toString() : " + path.toString());
|
|
|
|
|
this.logger.debug("=== strbuf.toString() : " + strbuf.toString());
|
|
|
|
|
|
|
|
|
|
jsonParam.put("allImagePath",
|
|
|
|
|
String.format(
|
|
|
|
|
"%s%s",
|
|
|
|
|
new Object[] {
|
|
|
|
|
path.toString(), strbuf.toString()
|
|
|
|
|
path.toString().replace(String.valueOf(this.g_strFTP[5]) + "/", ""), strbuf.toString()
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|