| | |
| | | package org.springblade.modules.FTP; |
| | | |
| | | import org.springblade.common.constant.FtpConstant; |
| | | |
| | | import org.springblade.common.config.FtpConfig; |
| | | |
| | | import java.io.*; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | public static String TestJson(String fileName){ |
| | | //File file = new File("D:\\anbao\\"+fileName); |
| | | File file = new File(FtpConstant.jsonUrl +fileName); |
| | | //File file = new File(FtpConstant.jsonUrl+fileName); |
| | | File file = new File(FtpConfig.jsonUrl +fileName); |
| | | StringBuilder localStrBulider = new StringBuilder(); |
| | | if(file.isFile() && file.exists()) { |
| | | try { |