我正在创建一个 Web 应用程序,我想在结果中显示一个 excel 图标。当用户点击图标时,它应该在客户端机器上打开一个电子表格,其中包含服务器发送的一些数据(客户端将安装 excel)。
我写了一些代码来从 web 服务在我的本地机器上创建 excel。
public class App
{
public static void main( String[] args )
{
try {
URL oracle = new URL("http://someService.com");
URLConnection yc =null;
yc = oracle.openConnection();
//Get the workbook instance for XLS file
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("Sample sheet");
BufferedReader in = new BufferedReader(
new InputStreamReader(
yc.getInputStream()));
String inputLine;
int rowNum =0;
while ((inputLine = in.readLine()) != null) {
Row row = sheet.createRow(rowNum++);
String[] coloumns = inputLine.split("\t");
int cellNum =0;
for(String coloumn: coloumns){
coloumn.
Cell cell = row.createCell(cellNum++);
cell.setCellValue(coloumn);
}
System.out.println(inputLine);
}
in.close();
FileOutputStream out =
new FileOutputStream(new File("C:\\libraries\\new.xls"));
workbook.write(out);
out.close();
System.out.println("Excel written successfully..");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
这工作正常。它所做的只是读取来自 Web 服务的数据并在我的机器 C:\libraries\new.xls 中创建一个电子表格。
现在,如果我在网络应用程序上,我想在客户端机器上打开电子表格。我不必保存工作表。只需打开数据即可。
如何使用来自 Web 服务的数据在客户端计算机上打开电子表格?
编辑
这是我的新服务器代码:
@RequestMapping(value = "/Excel")
public void getFile(HttpServletResponse response){
OutputStream out =null;
try {
out = response.getOutputStream();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
response.setContentType("application/x-ms-excel");
try {
URL oracle = new URL("http://someService.com");
URLConnection yc =null;
yc = oracle.openConnection();
//Get the workbook instance for XLS file
IOUtils.copy(yc.getInputStream(),out);
out.flush();
System.out.println("Excel written successfully..");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
所以现在我运行网络应用程序并没有发生任何事情?我应该在前端做些什么来调用这个流。