java svg_java生成饼图svg

package com.tellhow.svg;

import java.io.File;

import java.io.FileOutputStream;

/**

*

* @author 风絮NO.1

*

*/

public class CakySvgWithLabel {

//定义不同的颜色

static String[] colors ={"#f2e692", "#aa1111",

"#799AE1", "#3e941b",

"#66cc00", "#297110",

"#d6a97b", "#82522b",

"#aaaaff", "#1111aa",

"#ff2222", "#ffaaaa"};

static String initialize(double [] percents,String[]names){

StringBuffer sfile = new StringBuffer();

sfile.append("<?xml version='1.0' encoding='UTF-8'?>");

sfile.append("\n");

sfile.append("

sfile.append("\n");

sfile.append("xmlns='http://www.w3.org/2000/svg'");

sfile.append("\n");

sfile.append("xmlns:xlink='http://www.w3.org/1999/xlink'");

sfile.append("\n");

sfile.append("xml:space='default'");

sfile.append("\n");

sfile.append("version='1.1'  width='100%' height='100%' viewBox='0 0 2024 570'>");

sfile.append("\n");

sfile.append("");

sfile.append("\n");

sfile.append("");

sfile.append("\n");

//循环创造path标签.

String path =creatPath(502, 300, 300, percents,names);//中心点式503,300.

sfile.append(path);

sfile.append("");

sfile.append("\n");

sfile.append("

");

return sfile.toString();

}

/**

*

* @param x0 中心点横坐标

* @param y0 中心点纵坐标

* @param r  半径

* @param percents  百分比数组

* @param names 显示颜色代表的名称

* @return

*/

public static String creatPath(double x0,double y0,double r,double[]percents,String[]names){

StringBuffer sfile =new StringBuffer();

double x1=0; //新扇形的x坐标

double y1=0; //新扇形的y坐标

double middleX=0;  //文本显示的坐标,包括竖线显示的坐标

double middleY=0;

double radian =0; //弧度

double textRadian=0; //文本显示位置度弧度

double k=0;

int N=10;

for(int i=0;i

if(i==0){

radian =getRadian(percents[0]);

textRadian=radian/2;

x1 = (x0+getCos(radian)*r);

y1 = (y0-getSin(radian)*r);

middleX=(x0+getCos(textRadian)*r);

middleY=(y0-getSin(textRadian)*r);

double percent = Math.round(percents[0]*100)/100.0;//获得精确到两位小数点的坐标.

k=Math.abs((middleY-y0)/(middleX-x0));//获得扇形终点的坐标,与中心点连成的直线的斜率.(取正值)

double sita= Math.atan(k);//求斜角

double lineLen=50;

double textLen=70;

if(radian<6){

lineLen=90;

textLen=110;//控制指示线的长度,与文字的位置

}

if(percents[i]!=0){//当一个类型为0时,饼图展示

if((textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if ((textRadian>(Math.PI/2)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if ((textRadian>(Math.PI)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if((textRadian>(Math.PI*3/2)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}

sfile.append("\n");

if(getRadian(percents[0])>Math.PI){

sfile.append("");

}else{

sfile.append("");

}

sfile.append("\n");

}

sfile.append("");

sfile.append("\n");

sfile.append(""+names[0]+"");

sfile.append("\n");

}else{

textRadian = radian+(getRadian(percents[i])/2);//获取指示线与X轴的弧度.

radian =radian+getRadian(percents[i]);//第i个扇形前面的弧度的总和

middleX=(x0+getCos(textRadian)*r);

middleY=(y0-getSin(textRadian)*r);

double percent = Math.round(percents[i]*100)/100.0;

k=Math.abs((middleY-y0)/(middleX-x0));

double lineLen=50;

double textLen=70;

if(radian<6){

lineLen=90;

textLen=110;

}

double sita= Math.atan(k);

if(percents[i]!=0){//当一个类型为0时,饼图展示

if((textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if ((textRadian>(Math.PI/2)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if ((textRadian>(Math.PI)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}else if((textRadian>(Math.PI*3/2)&&textRadian

sfile.append("");

sfile.append("\n");

sfile.append(""+percent+"%");

}

sfile.append("\n");

// 参数 1 表示 画大于180的弧, 0 表示画小于180的弧 (这个地方比较重要)

if(getRadian(percents[i])>Math.PI){

sfile.append("");

}else{

sfile.append("");

}

sfile.append("\n");

}

N+=50;

sfile.append("");

sfile.append("\n");

sfile.append(""+names[i]+"");

sfile.append("\n");

}

}

return sfile.toString();

}

//返回弧度

public static double getRadian(double fenshu){

return (fenshu*Math.PI)/50;

}

//返回正弦

public static double getSin(double radian){

return Math.sin(radian);

}

//返回余弦

public static double getCos(double radian){

return Math.cos(radian);

}

public static void main(String[] args) {

int[] data= {3,64,0,284,10};

String[] names={"主变:"+data[0]+"个","断路器:"+data[1]+"个","线路:"+data[2]+"个","刀闸:"+data[3]+"个","母线:"+data[4]+"个"};

create(data,names);

}

private static void create(int[] data,String[] names) {

try {

createSVG("d:/a.svg",getPercent(data),names);

} catch (Exception e) {

e.printStackTrace();

}

}

private static double[] getPercent(int data[]){

double sum=0;

double percents[] = new double[data.length];

for(int i=0;i

sum+=data[i];

}

for(int i=0;i

percents[i] =(data[i]/sum)*100;

}

return percents;

}

public static void createSVG(String fileRealPath, double[] percents,String[] names) throws Exception {

String sFile = initialize(percents,names);

try {

byte[] byteFil = sFile.getBytes("UTF-8");

File svgFile = new File(fileRealPath);

if (svgFile.exists()) {

svgFile.delete();

}

FileOutputStream fos = new FileOutputStream(svgFile);

fos.write(byteFil);

fos.close();

} catch (Exception ex) {

System.out.print(ex.getMessage());

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值