You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.7 KiB
100 lines
2.7 KiB
package com.fr.output; |
|
|
|
import com.fr.data.dao.CompatiableIDFCMapper; |
|
import com.fr.data.dao.ObjectTableMapper; |
|
import com.fr.json.JSONException; |
|
import com.fr.json.JSONObject; |
|
import com.fr.schedule.output.AbstractOutputFileAction; |
|
import com.fr.schedule.output.OutputFileAction; |
|
|
|
import java.io.BufferedInputStream; |
|
import java.io.BufferedOutputStream; |
|
import java.io.File; |
|
import java.io.FileInputStream; |
|
import java.io.FileOutputStream; |
|
import java.io.IOException; |
|
import java.io.OutputStream; |
|
|
|
public class OutputExcel extends AbstractOutputFileAction { |
|
|
|
@Override |
|
public File[] getFilesToDealWith(File[] files) { |
|
return files; |
|
} |
|
|
|
@Override |
|
public void doFileAction(File[] files) { |
|
// OutputStream out=new BufferedOutputStream(new FileOutputStream(new File(files.)));; |
|
System.out.println(files[0].getName()); |
|
for (int i = 0; i < files.length; i++) { |
|
String name = files[i].getName(); |
|
String path = "D:/" + name; |
|
BufferedInputStream in = null; |
|
OutputStream out = null; |
|
try { |
|
out = new BufferedOutputStream(new FileOutputStream(new File(path))); |
|
in = new BufferedInputStream(new FileInputStream(files[i])); |
|
byte[] ba = new byte[in.available()]; |
|
in.read(ba); |
|
out.write(ba); |
|
} catch (Exception e) { |
|
// TODO Auto-generated catch block |
|
e.printStackTrace(); |
|
} finally { |
|
try { |
|
if (in != null) { |
|
in.close(); |
|
} |
|
if (out != null) { |
|
out.close(); |
|
} |
|
} catch (IOException e) { |
|
// TODO Auto-generated catch block |
|
e.printStackTrace(); |
|
} |
|
|
|
} |
|
|
|
} |
|
} |
|
|
|
@Override |
|
public ObjectTableMapper objectTableMapper2Register() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public CompatiableIDFCMapper getExtraOutputFileActionForeignKey() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public long getId() { |
|
return 0; |
|
} |
|
|
|
@Override |
|
public boolean isEmailNotification() { |
|
// TODO Auto-generated method stub |
|
return false; |
|
} |
|
|
|
@Override |
|
public OutputFileAction analyzeJSON(JSONObject arg0) { |
|
// TODO Auto-generated method stub |
|
return null; |
|
} |
|
|
|
@Override |
|
public JSONObject createJSONConfig() throws JSONException { |
|
// TODO Auto-generated method stub |
|
return null; |
|
} |
|
|
|
@Override |
|
public String getJsonTag() { |
|
// TODO Auto-generated method stub |
|
return null; |
|
} |
|
|
|
}
|
|
|