私は、連絡先情報をページヘッダーに表示する必要があるレポートアプリケーションに取り組んでおり、情報が多い場合は、表のように右揃えで次の列に表示されます。例:- 連絡先情報に 5 行 (A、B、C、D、E) が含まれ、ページ ヘッダーで 3 行のみが許可されているとします。ti は次のように表示されます。
AD
BE
C
D と E が次の行に来ることに注意してください。しかし、現在、A、B、C はランダムな長さであり、私の文字列バッファは、テーブルの形式または行と列で作成する必要があります。コルを作るには
1.) 連絡先情報を 2D 配列に変更しました。2.) 列を取り、その列のコンテンツの最大幅を見つけます。 3.) 次の列が右揃えに見えるように、各列の行にスペースを追加します。
2番目のステップでは、 BaseFont double w = bf.getWidthPoint(s, size); を使用して特定の文字列の幅を取得しました。
最大幅が見つかった後、この幅が最大のものとして取得され、減算されます
スペースを追加 = 最大幅 - (A) の幅を A
同様に、スペース=最大幅-(B)の幅をBに追加します。
D と E が右揃えになるようにします。
しかし、私は与える方法を見つけられませんでした
--> スペース = bf で計算された上記の幅
PDFに印刷すると、表のように表示されます。
以下はサンプルコードです:-
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfWriter;
public class PrintSpacePdf {
private static String arrNames[] = { "US Rates Strategy Cash",
"Pavan Wadhwa(1-212) 844-4597", "Srini Ramaswamy(1-212) 844-4983",
"Meera Chandan(1-212) 855-4555", "Kimberly Harano(1-212) 823-4996",
"Feng Deng(1-212) 855-2555", "US Rates Strategy Derivatives",
"Srini Ramaswamy(1-212) 811-4999",
"Alberto Iglesias(1-212) 898-5442",
"Praveen Korapaty(1-212) 812-3444", "Feng Deng(1-212) 812-2456",
"US Rates Strategy Derivatives", "Srini Ramaswamy(1-212) 822-4999",
"Alberto Iglesias(1-212) 822-5098",
"Praveen Korapaty(1-212) 812-3655", "Feng Deng(1-212) 899-2222" };
private static int SIZE = arrNames.length;
private static int maxRows = 0;
private static int maxCols = 0;
public static void main(String[] args) {
writeStringToPDF(generateBuffer(), 500, 400, "C://barchart.pdf");
// writeChartToPDF(generatePieChart(), 500, 400, "C://piechart.pdf");
}
public static String generateBuffer() {
maxRows = 5;
maxCols = (SIZE % maxRows == 0) ? SIZE / maxRows : (SIZE / maxRows) + 1;
int size = 5;// fontSize
BaseFont bf;
String buffer = null;
try {
bf = BaseFont.createFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252,
BaseFont.NOT_EMBEDDED);
System.out.println("rows:" + maxRows + "cols:" + maxCols);
String arrData[][] = initializeTableArrays(arrNames);
// showArrayData(arrData);
arrData = addSpacesToArrayContents(arrData, size, bf);
buffer = createBufferWithTableArray(arrData);
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return buffer;
}
public static String createBufferWithTableArray(String[][] arrData) {
String buffer = "";
for (int r = 0; r < maxRows; r++) {
for (int c = 0; c < maxCols; c++) {
if (arrData[r][c] != null) {
buffer += arrData[r][c];
}
}
buffer += "\n";
}
return buffer;
}
public static String[][] initializeTableArrays(String arrNames[]) {
String arrData[][] = new String[maxRows][maxCols];
int col = 0;
for (int i = 0; i < arrNames.length; i++) {
if (arrNames[i] != null) {
col = 0;
for (int j = i; j < arrNames.length; j += maxRows) {
// System.out.println("i:" + i + "col" + col + "j:" + j);
if (arrNames[j] != null) {
arrData[i][col] = arrNames[j].trim();
arrNames[j] = null;
}
col++;
}
}
}
return arrData;
}
public static String[][] addSpacesToArrayContents(String arrData[][],
int size, BaseFont bf) {
for (int cols = 0; cols < maxCols; cols++) {
double maxWidth = getMaximumColWidth(arrData, cols, size, bf);
for (int rows = 0; rows < maxRows; rows++) {
String s = arrData[rows][cols];
if (s != null) {
double w = bf.getWidthPoint(s, size);
double noOfSpaces = maxWidth - w;
arrData[rows][cols] = addSpaces(s, noOfSpaces);
}
}
}
return arrData;
}
public static double getMaximumColWidth(String[][] arrData, int column,
int size, BaseFont bf) {
double maxSize = 0;
for (int cols = 0; cols < maxCols; cols++) {
for (int rows = 0; rows < maxRows; rows++) {
String s = arrData[rows][cols];
if (s != null) {
double w = bf.getWidthPoint(s, size);
maxSize = (maxSize < w) ? w : maxSize;
}
}
}
return (maxSize);
}
public static String addSpaces(String s, double noOfSpaces) {
for (int i = 0; i < noOfSpaces; i++) {
s = s.concat(" ");
}
return s;
}
public static void showArrayData(String arrData[][]) {
for (int i = 0; i < arrData.length; i++) {
String inner[] = arrData[i];
for (int j = 0; j < inner.length; j++) {
System.out.println("i:" + i + "j:" + j + "->" + inner[j]);
}
System.out.println();
}
}
public static void writeStringToPDF(String buffer, int width, int height,
String fileName) {
PdfWriter writer = null;
Document document = new Document();
try {
writer = PdfWriter.getInstance(document, new FileOutputStream(
fileName));
document.open();
PdfContentByte contentByte = writer.getDirectContent();
System.out.println(buffer);
BaseFont bf = BaseFont.createFont(BaseFont.TIMES_ROMAN,BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
contentByte.beginText();
contentByte.setFontAndSize(bf, 5);
contentByte.showText(buffer);
contentByte.endText();
} catch (Exception e) {
e.printStackTrace();
}
document.close();
}
}
上記のアプローチを使用したテーブルと同等の文字列バッファーに連絡先を表示するのを手伝ってください。
ありがとう