public class ColorInfo{
/**
* 颜色的alpha值,此值控制了颜色的透明度
*/
public int A;
/**
* 颜色的红分量值,Red
*/
public int R;
/**
* 颜色的绿分量值,Green
*/
public int G;
/**
* 颜色的蓝分量值,Blue
*/
public int B;
public int toRGB() {
return this.R << 16 | this.G << 8 | this.B;
}
public java.awt.Color toAWTColor(){
return new java.awt.Color(this.R,this.G,this.B,this.A);
}
public static ColorInfo fromARGB(int red, int green, int blue) {
return new ColorInfo((int) 0xff, (int) red, (int) green, (int) blue);
}
public static ColorInfo fromARGB(int alpha, int red, int green, int blue) {
return new ColorInfo(alpha, red, green, blue);
}
public ColorInfo(int a,int r, int g , int b ) {
this.A = a;
this.B = b;
this.R = r;
this.G = g;
}
}
转化工具
/**
* excel97中颜色转化为uof颜色
*
* @param color
* 颜色序号
* @return 颜色或者null
*/
private static ColorInfo excel97Color2UOF(Workbook book, short color) {
if (book instanceof HSSFWorkbook) {
HSSFWorkbook hb = (HSSFWorkbook) book;
HSSFColor hc = hb.getCustomPalette().getColor(color);
ColorInfo ci = excelColor2UOF(hc);
return ci;
}
return null;
}
/**
* excel(包含97和2007)中颜色转化为uof颜色
*
* @param color
* 颜色序号
* @return 颜色或者null
*/
private static ColorInfo excelColor2UOF(Color color) {
if (color == null) {
return null;
}
ColorInfo ci = null;
if (color instanceof XSSFColor) {// .xlsx
XSSFColor xc = (XSSFColor) color;
byte[] b = xc.getRgb();
if (b != null) {// 一定是argb
ci = ColorInfo.fromARGB(b[0], b[1], b[2], b[3]);
}
} else if (color instanceof HSSFColor) {// .xls
HSSFColor hc = (HSSFColor) color;
short[] s = hc.getTriplet();// 一定是rgb
if (s != null) {
ci = ColorInfo.fromARGB(s[0], s[1], s[2]);
}
}
return ci;
}
获取单元格式样