优化这段代码能产生不同的单元格宽度:public void myGraphicsGeneration(String name,String cellsValue[][], String path) { // 字体大小 int fontTitileSize = 15; // 横线的行数 int totalrow = cellsValue.length+1; // 竖线的行数 int totalcol = 0; if (cellsValue[0] != null) { totalcol = cellsValue[0].length; } // 图片宽度 int imageWidth = 1024; // 行高 int rowheight = 40; // 图片高度 int imageHeight = totalrow*rowheight+50; // 起始高度 int startHeight = 10; // 起始宽度 int startWidth = 10; // 单元格宽度 int colwidth = (int)((imageWidth-20)/totalcol); BufferedImage image = new BufferedImage(imageWidth, imageHeight,BufferedImage.TYPE_INT_RGB); Graphics graphics = image.getGraphics(); graphics.setColor(Color.WHITE); graphics.fillRect(0,0, imageWidth, imageHeight); graphics.setColor(new Color(220,240,240)); //画横线 for(int j=0;j<totalrow; j++){ graphics.setColor(Color.black); graphics.drawLine(startWidth, startHeight + (j + 1) * rowheight, startWidth + colwidth * totalcol, startHeight + (j + 1) * rowheight); } //画竖线 for(int k=0;k<totalcol+1;k++){ graphics.setColor(Color.black); graphics.drawLine(startWidth + k * colwidth, startHeight + rowheight, startWidth + k * colwidth, startHeight + rowheight * totalrow); } //设置字体 Font font = new Font("微软雅黑",Font.BOLD,fontTitileSize); graphics.setFont(font); //写标题 String title = "【"+ name +"】"; graphics.drawString(title, startWidth, startHeight+rowheight-10); //写入内容 for(int n=0;n<cellsValue.length;n++){ for(int l=0;l<cellsValue[n].length;l++){ if (n == 0) { font = new Font("微软雅黑",Font.BOLD,fontTitileSize); graphics.setFont(font); }else if (n > 0 && l >0) { font = new Font("微软雅黑",Font.PLAIN,fontTitileSize); graphics.setFont(font); graphics.setColor(Color.RED); } else { font = new Font("微软雅黑",Font.PLAIN,fontTitileSize); graphics.setFont(font); graphics.setColor(Color.BLACK); } if(cellsValue[n][l]==null){ cellsValue[n][l] = ""; } graphics.drawString(cellsValue[n][l].toString(), startWidth + colwidth * l + 5, startHeight + rowheight * (n + 2) - 10); } } // 保存图片 createImage(image, path); }
时间: 2024-03-05 12:49:25 浏览: 62
可以考虑使用自适应单元格宽度的方法来优化这段代码,使得不同单元格的宽度可以根据内容长度来动态调整。具体实现方法可以参考以下步骤:
1. 计算每列的最大字符个数,即获取每列中字符长度的最大值。
2. 根据最大字符个数和字体大小计算单元格宽度,可以采用 FontMetrics 类的 stringWidth 方法来计算字符串的宽度。
3. 在画竖线时,根据计算出的单元格宽度动态调整每列的宽度。
4. 在画内容时,根据每个单元格中字符的长度和计算出的单元格宽度动态调整每个单元格的宽度,以保证内容能够完整显示。
优化后的代码如下:
```
public void myGraphicsGeneration(String name,String cellsValue[][], String path) {
// 字体大小
int fontTitileSize = 15;
// 横线的行数
int totalrow = cellsValue.length+1;
// 竖线的行数
int totalcol = 0;
if (cellsValue[0] != null) {
totalcol = cellsValue[0].length;
}
// 图片宽度
int imageWidth = 1024;
// 行高
int rowheight = 40;
// 图片高度
int imageHeight = totalrow*rowheight+50;
// 起始高度
int startHeight = 10;
// 起始宽度
int startWidth = 10;
// 每列的最大字符个数
int[] maxChars = new int[totalcol];
for (int i = 0; i < totalcol; i++) {
for (int j = 0; j < totalrow; j++) {
if (cellsValue[j][i] != null && cellsValue[j][i].length() > maxChars[i]) {
maxChars[i] = cellsValue[j][i].length();
}
}
}
// 计算单元格宽度
int[] colWidths = new int[totalcol];
Font font = new Font("微软雅黑", Font.PLAIN, fontTitileSize);
FontMetrics metrics = new BufferedImage(1, 1, BufferedImage.TYPE_INT_RGB).getGraphics().getFontMetrics(font);
for (int i = 0; i < totalcol; i++) {
colWidths[i] = metrics.stringWidth(String.format("%" + maxChars[i] + "s", "")) + 10;
}
// 重新计算图片宽度
imageWidth = Arrays.stream(colWidths).sum() + 20;
BufferedImage image = new BufferedImage(imageWidth, imageHeight, BufferedImage.TYPE_INT_RGB);
Graphics graphics = image.getGraphics();
graphics.setColor(Color.WHITE);
graphics.fillRect(0,0, imageWidth, imageHeight);
graphics.setColor(new Color(220,240,240));
// 画横线
for(int j=0;j<totalrow; j++){
graphics.setColor(Color.black);
graphics.drawLine(startWidth, startHeight + (j + 1) * rowheight, startWidth + Arrays.stream(colWidths).sum(), startHeight + (j + 1) * rowheight);
}
// 画竖线
int x = startWidth;
for(int k=0;k<totalcol+1;k++){
graphics.setColor(Color.black);
graphics.drawLine(x, startHeight + rowheight, x, startHeight + rowheight * totalrow);
x += (k == totalcol) ? 0 : colWidths[k];
}
// 设置字体
font = new Font("微软雅黑",Font.BOLD,fontTitileSize);
graphics.setFont(font);
// 写标题
String title = "【"+ name +"】";
graphics.drawString(title, startWidth, startHeight+rowheight-10);
// 写入内容
for(int n=0;n<cellsValue.length;n++){
for(int l=0;l<cellsValue[n].length;l++){
if (n == 0) {
font = new Font("微软雅黑",Font.BOLD,fontTitileSize);
graphics.setFont(font);
} else if (n > 0 && l >0) {
font = new Font("微软雅黑",Font.PLAIN,fontTitileSize);
graphics.setFont(font);
graphics.setColor(Color.RED);
} else {
font = new Font("微软雅黑",Font.PLAIN,fontTitileSize);
graphics.setFont(font);
graphics.setColor(Color.BLACK);
}
if(cellsValue[n][l]==null){
cellsValue[n][l] = "";
}
graphics.drawString(cellsValue[n][l].toString(), startWidth + Arrays.stream(colWidths).limit(l).sum() + 5, startHeight + rowheight * (n + 2) - 10);
}
}
// 保存图片
createImage(image, path);
}
```
阅读全文