fix: 能谱log日志生成工具
This commit is contained in:
parent
e2598e14ef
commit
a794d8f357
|
@ -139,17 +139,23 @@ public class MyLogFormatUtil {
|
|||
attributeItemVo.setAttribute("Channel");
|
||||
attributeItemVo.setContext(channels);
|
||||
energys.add(attributeItemVo);
|
||||
// attributeItem = new AttributeItem();
|
||||
// attributeItem.setAttribute("Energy");
|
||||
// attributeItem.setContext(energies);
|
||||
// energys.add(attributeItem);
|
||||
// attributeItem = new AttributeItem();
|
||||
// attributeItem.setAttribute("Error");
|
||||
// attributeItem.setContext(errors);
|
||||
attributeItemVo = new AttributeItemVo();
|
||||
attributeItemVo.setAttribute("Energy");
|
||||
attributeItemVo.setContext(energies);
|
||||
energys.add(attributeItemVo);
|
||||
attributeItemVo = new AttributeItemVo();
|
||||
attributeItemVo.setAttribute("Error");
|
||||
attributeItemVo.setContext(errors);
|
||||
energys.add(attributeItemVo);
|
||||
MyLogFormatUtil.getBlock(MyLogFormatUtil.SetSampleGEnergyChannel, "sampleId", energys);
|
||||
|
||||
|
||||
// 报告
|
||||
List<List<String>> report = Lists.newLinkedList();
|
||||
report.add(channels);
|
||||
report.add(energies);
|
||||
report.add(errors);
|
||||
getBlockVerticalContext(energys);
|
||||
|
||||
// List<AttributeItem> data = new ArrayList<>();
|
||||
// AttributeItem attributeItem = new AttributeItem();
|
||||
|
@ -219,6 +225,25 @@ public class MyLogFormatUtil {
|
|||
.replace(" ", FILE_TITLE_FLAG);
|
||||
}
|
||||
|
||||
// public void getBlockFormatData(List<Object> data) {
|
||||
// if(data.get(0) instanceof AttributeItemVo){
|
||||
//
|
||||
// }
|
||||
// if(data.get(0) instanceof List){
|
||||
// List<List<String>> tempData = new LinkedList<>();
|
||||
// for(int row = 0; row < data.get(0).size(); row++) {
|
||||
// List<String> items = new LinkedList<>();
|
||||
// tempData.add(items);
|
||||
// // 获取有多少列数据
|
||||
// for(int column = 0; column < data.size(); column++) {
|
||||
// if(data.get(column).size() > row) {
|
||||
// items.add(data.get(column).get(row));
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
/**
|
||||
* 获取内容正文
|
||||
* @param data 内容
|
||||
|
@ -250,7 +275,7 @@ public class MyLogFormatUtil {
|
|||
*/
|
||||
public static List<String> getBlockContext(List<AttributeItemVo> data) {
|
||||
List<String> result = new LinkedList<>();
|
||||
List<List<String>> tempData = new ArrayList<>();
|
||||
List<List<String>> tempData = new LinkedList<>();
|
||||
if(data.size() > 0) {
|
||||
// 初始化数据
|
||||
for(int row = 0; row < data.get(0).getContext().size(); row++) {
|
||||
|
@ -264,31 +289,67 @@ public class MyLogFormatUtil {
|
|||
}
|
||||
}
|
||||
}
|
||||
result.addAll(formatData(tempData));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
// 计算每列数据中最长的字符串长度
|
||||
int[] columnWidths = new int[tempData.get(0).size()];
|
||||
for (List<String> row : tempData) {
|
||||
for (int i = 0; i < row.size(); i++) {
|
||||
columnWidths[i] = Math.max(columnWidths[i], row.get(i).length());
|
||||
/**
|
||||
* 获取竖排数据
|
||||
* @param data
|
||||
* @return
|
||||
*/
|
||||
public static List<String> getBlockVerticalContext(List<AttributeItemVo> data) {
|
||||
List<String> result = new LinkedList<>();
|
||||
if(data.size() > 0) {
|
||||
List<List<String>> tempData = new LinkedList<>();
|
||||
// 行
|
||||
for(int row = 0; row < data.get(0).getContext().size(); row++) {
|
||||
List<String> columns = new LinkedList<>();
|
||||
tempData.add(columns);
|
||||
// 获取有多少列数据
|
||||
for(int column = 0; column < data.size(); column++) {
|
||||
AttributeItemVo item = data.get(column);
|
||||
if(item.getContext().size() > row) {
|
||||
columns.add(item.getContext().get(row) + " " + item.getUnit());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 构造格式化字符串
|
||||
StringBuilder formatBuilder = new StringBuilder();
|
||||
for (int i = 0; i < columnWidths.length; i++) {
|
||||
formatBuilder.append("%-").append(columnWidths[i] + 4).append("s");
|
||||
}
|
||||
String format = formatBuilder.toString();
|
||||
// 格式化输出日志
|
||||
for (List<String> row : tempData) {
|
||||
result.add(String.format(format, row.toArray()));
|
||||
Console.log(String.format(format, row.toArray()));
|
||||
}
|
||||
result.add(STRING_END);
|
||||
result.addAll(formatData(tempData));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化数据
|
||||
* @param data
|
||||
* @return
|
||||
*/
|
||||
public static List<String> formatData(List<List<String>> data) {
|
||||
List<String> result = new LinkedList<>();
|
||||
// 计算每列数据中最长的字符串长度
|
||||
int[] columnWidths = new int[data.get(0).size()];
|
||||
for (List<String> row : data) {
|
||||
for (int i = 0; i < row.size(); i++) {
|
||||
columnWidths[i] = Math.max(columnWidths[i], row.get(i).length());
|
||||
}
|
||||
}
|
||||
|
||||
// 构造格式化字符串
|
||||
StringBuilder formatBuilder = new StringBuilder();
|
||||
for (int i = 0; i < columnWidths.length; i++) {
|
||||
formatBuilder.append("%-").append(columnWidths[i] + 4).append("s");
|
||||
}
|
||||
String format = formatBuilder.toString();
|
||||
// 格式化输出日志
|
||||
for (List<String> row : data) {
|
||||
result.add(String.format(format, row.toArray()));
|
||||
Console.log(String.format(format, row.toArray()));
|
||||
}
|
||||
result.add(STRING_END);
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 求百分比
|
||||
* @param one 被除数
|
||||
|
|
Loading…
Reference in New Issue
Block a user