按照以上步骤操作完毕之后,在linux环境下还是中文乱码(缺少中文字体)
修改后的code如下:
package com.chengxi.hcharts.exporting;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import com.chengxi.hcharts.svg.MyConverter;
import com.opensymphony.xwork2.ActionSupport;
/**
* SVG 转换类,实现将SVG文件转换为常见图片格式文件
* @author Ely
*
*
*
* 导出步骤:
* 1、接受页面提交的参数 ( 可以将参数打印出来以确保页面提交过来的代码不会乱码)
* 2、将svg代码保存为.svg文件 (保存文件时注意编码)
* 3、执行转换函数,将.svg文件转换成目标文件
* 4、读取目标文件,并调用 浏览器下载
*/
@SuppressWarnings("serial")
public class ExportingAction extends ActionSupport {
/**
* 第一步:获取页面提交的参数,这里由Struts2帮我们来处理
*/
// 宽度
private float width;
// 缩放比例,这里并没有用到该参数详见API,http://www.hcharts.cn/api/index.php#exporting.scale
private float scale;
// 导出类型
private String type;
// 文件名
private String filename;
// SVG代码,官方默认是以文件形式上传,用jsp/servlet 的request.getParameter(arg0)是无法获取该值的,所以这里利用Struts2来帮我们处理。更多详情我将在Highcharts中文论坛上详细说明
private String svg;
private HttpServletRequest request;
private HttpServletResponse response;
public ExportingAction() {
request = ServletActionContext.getRequest();
response = ServletActionContext.getResponse();
}
// get set
public float getWidth() {
return width;
}
public void setWidth(float width) {
this.width = width;
}
public float getScale() {
return scale;
}
public void setScale(float scale) {
this.scale = scale;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getFilename() {
return filename;
}
public void setFilename(String filename) {
this.filename = filename;
}
public String getSvg() {
return svg;
}
public void setSvg(String svg) {
this.svg = svg;
}
// 导出函数
public void export() throws Exception{
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
/**
* 第二步:将svg代码保存为svg文件
*/
// 打印获取的参数,确保可以获取值且中文不会乱码,如果出现乱码,请将你的Highcharts页面的编码设置为UTF-8
// System.out.println(type + "\n" + filename + "\n" +svg + "\n" + width+"\n"+scale);
// 获取项目的绝对路径
@SuppressWarnings("deprecation")
String WebRoot = request.getRealPath("")+"/temp/";
// SVG临时文件名
String temp = WebRoot+System.currentTimeMillis()+(int)(Math.random()*1000)+".svg";
System.out.println("temp: "+temp);
// 将svg代码写入到临时文件中,文件后缀的.svg
File svgTempFile = new File(temp);
//写入文件,注意文件编码
OutputStreamWriter svgFileOsw = new OutputStreamWriter(new FileOutputStream(svgTempFile),"UTF-8");
svgFileOsw.write(svg);
svgFileOsw.flush();
svgFileOsw.close();
/**
* 第三步:调用转换函数,生成目标文件
*/
// System.out.println("调用转换函数,生成目标文件");
MyConverter mc = new MyConverter();
// 调用转换函数,返回目标文件名
String filename = mc.conver(temp,WebRoot, type, width);
// System.out.println("filename: "+filename);
// 读取目标文件流,转换调用下载
File resultFile = new File(WebRoot+filename);
// System.out.println("WebRoot+filename: "+WebRoot+filename);
FileInputStream resultFileFi = new FileInputStream(resultFile);
long l = resultFile.length();
int k = 0;
byte abyte0[] = new byte[65000];
/**
* 第四步:调用浏览器下载
*/
// 调用下载
// System.out.println("调用浏览器下载");
response.setCharacterEncoding("UTF-8");
response.setContentType("application/x-msdownload");
response.setContentLength((int) l);
response.setHeader("Content-Disposition", "attachment; filename=" + filename);
while ((long) k < l) {
int j;
j = resultFileFi.read(abyte0, 0, 65000);
k += j;
response.getOutputStream().write(abyte0, 0, j);
}
resultFileFi.close();
// 转换成功后,删除临时文件
svgTempFile.delete();
resultFile.delete();
System.out.println("转换成功后,删除临时文件");
}
}
----------------------------------------------------------------------------------------
package com.chengxi.hcharts.svg;
import java.io.File;
import org.apache.batik.apps.rasterizer.DestinationType;
import org.apache.batik.apps.rasterizer.SVGConverter;
import org.apache.batik.apps.rasterizer.SVGConverterException;
/**
* SVG 转换类,实现将SVG文件转换为常见图片格式文件
* @author Ely
*
*
*
*/
public class MyConverter extends SVGConverter{
/**
* 转换方法
* @param sources SVG文件路径
* @param destination 目标文件路径
* @param type 转换类型,有 image/png | image/jpeg | application/pdf | image/svg+xml 可选
* @param width 导出图片宽度
* @return 目标文件名
* @throws SVGConverterException
*/
public String conver(String sources,String destination,String type,float width) throws SVGConverterException {
SVGConverter converter = new MyConverter();
// 设置高度,默认是400
converter.setHeight(600);
// 设置宽度,传入的值
converter.setWidth(width);
// 设置svg源文件路径,是一个数组,支持多个文件同时转换
String[] src = {sources};
converter.setSources(src);
// converter.setLanguage("zh-cn");
System.out.println("DefaultFontFamily: "+converter.getDefaultFontFamily());
converter.setDefaultFontFamily("黑体");
// 设置图片质量
converter.setQuality(MAXIMUM_QUALITY);
// 记录文件后缀
String ext = "";
// 更具传入的类型设置导出类型和文件后缀
if(type.equals("image/png")) {
converter.setDestinationType(DestinationType.PNG);
ext = "png";
} else if(type.equals("image/jpeg")) {
converter.setDestinationType(DestinationType.JPEG);
ext = "jpg";
} else if(type.equals("application/pdf")) {
converter.setDestinationType(DestinationType.PDF);
ext = "pdf";
} else if (type.equals("image/svg+xml")) {
converter.setDestinationType(DestinationType.TIFF);
ext = "tif";
} else {
return null;
}
// 设置目标文件路径
converter.setDst(new File(destination+"/chart."+ext));
// 执行导出
System.out.println("执行导出");
converter.execute();
return "chart."+ext;
}
}
converter.setDefaultFontFamily("黑体");彩色部分,设置导出图片中的字体,这样设置之后字体乱码问题就解决了。
linux下有时候会缺少中文字体,所以需要上传并设置中文字体,然后在导出转换过程中设置汉字字体。