如何在2D数组中存储日志参数

时间:2012-12-12 21:03:10

标签: java html

我在Java中有一个字符串 -

parameter1 => yes
parameter2 => yes
parameter3 => Tom
parameter4 => log4
parameter5 => 04/20/2011:15:23:21
parameter6 => 500
parameter7 => [DAILY, MTD, BIMTD]

现在如何在2D数组中保存参数值对?我需要在HTML页面中将参数值对显示为表,一列包含参数名称,另一列包含值。

3 个答案:

答案 0 :(得分:1)

将所有这7个参数保存为自定义类的字段,然后使用该类的实例数组将更容易实现。

class Custom
{
   String param1, param2, ...
   // String[] params => you can also store parameters in an array.

}

Custom[] array = new Custom[50];

答案 1 :(得分:0)

从您提供的线索中,我相信HashMap(键,值对)可以被视为一种方法。

答案 2 :(得分:0)

您可以使用地图。

Map<String, String> map = new HashMap<String, String>();
//Populate the map
map.put("ParamName", "ParamValue");
...


//Iterate on the values
for (Entry e : map) {
  System.out.println("Param " +  e.getKey() + " Value " + e.getValue()); 
}