java 如何获得一个文件夹的创建时间 具体点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 如何获得一个文件夹的创建时间 具体点相关的知识,希望对你有一定的参考价值。
参考技术A System.out.println("文件/文件夹的最后修改时间:" + new Date(file.lastModified()).toLocaleString()); 参考技术B 比如我在D盘有个文件夹a,现在要获取其创建时间:File file = new File("D:\\a");
long time = file.lastModified();//返回文件最后修改时间,是以个long型毫秒数
String ctime = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date(time));
System.out.println(ctime);
希望对你有帮助 参考技术C 右键,属性 参考技术D 楼上正解^O^
如何从java中的数组创建ARFF文件?
【中文标题】如何从java中的数组创建ARFF文件?【英文标题】:How to create an ARFF file from an array in java? 【发布时间】:2012-10-08 20:53:14 【问题描述】:我想获得由 java 中的两个数组表示的 x-y 对的加权线性回归的系数。我已经将注意力集中在 weka 上,但它正在询问“LinearRegression”类中的“Instances”类对象。要创建“Instances”类文件,需要一个包含数据的 ARFF 文件。我遇到了使用 FastVector 类的解决方案,但现在在最新的 weka 版本中已弃用。如何为 x-y 对和对应的权重创建一个 ARFF 文件,这些都由 java 中的数组表示?
这是我基于 Baz 回答的代码。它在最后一行“lr.buildClassifier(newDataset)”上给出了一个异常 - 线程 [main] (Suspended (exception UnassignedClassException)) Capabilities.testWithFail(Instances) 行: 1302 。这是代码 -
public static void test() throws Exception
double[][] data = 4058.0, 4059.0, 4060.0, 214.0, 1710.0, 2452.0, 2473.0, 2474.0, 2475.0, 2476.0, 2477.0, 2478.0, 2688.0, 2905.0, 2906.0, 2907.0, 2908.0, 2909.0, 2950.0, 2969.0, 2970.0, 3202.0, 3342.0, 3900.0, 4007.0, 4052.0, 4058.0, 4059.0, 4060.0, 19.0, 20.0, 21.0, 31.0, 103.0, 136.0, 141.0, 142.0, 143.0, 144.0, 145.0, 146.0, 212.0, 243.0, 244.0, 245.0, 246.0, 247.0, 261.0, 270.0, 271.0, 294.0, 302.0, 340.0, 343.0, 354.0, 356.0, 357.0, 358.0;
int numInstances = data[0].length;
ArrayList<Attribute> atts = new ArrayList<Attribute>();
List<Instance> instances = new ArrayList<Instance>();
for(int dim = 0; dim < 2; dim++)
Attribute current = new Attribute("Attribute" + dim, dim);
if(dim == 0)
for(int obj = 0; obj < numInstances; obj++)
instances.add(new SparseInstance(numInstances));
for(int obj = 0; obj < numInstances; obj++)
instances.get(obj).setValue(current, data[dim][obj]);
//instances.get(obj).setWeight(weights[obj]);
atts.add(current);
Instances newDataset = new Instances("Dataset", atts, instances.size());
for(Instance inst : instances)
newDataset.add(inst);
LinearRegression lr = new LinearRegression();
lr.buildClassifier(newDataset);
【问题讨论】:
【参考方案1】:我认为这可能会对您有所帮助:
FastVector atts = new FastVector();
List<Instance> instances = new ArrayList<Instance>();
for(int dim = 0; dim < numDimensions; dim++)
// Create new attribute / dimension
Attribute current = new Attribute("Attribute" + dim, dim);
// Create an instance for each data object
if(dim == 0)
for(int obj = 0; obj < numInstances; obj++)
instances.add(new SparseInstance(numDimensions));
// Fill the value of dimension "dim" into each object
for(int obj = 0; obj < numInstances; obj++)
instances.get(obj).setValue(current, data[dim][obj]);
// Add attribute to total attributes
atts.addElement(current);
// Create new dataset
Instances newDataset = new Instances("Dataset", atts, instances.size());
// Fill in data objects
for(Instance inst : instances)
newDataset.add(inst);
之后Instances
是你的数据集。
注意:Weka的当前版本(3.6.8)没有报错,尽管我使用了FastVector
。
但是,对于 Developer 版本 (3.7.7),请使用:
ArrayList<Attribute> atts = new ArrayList<Attribute>();
List<Instance> instances = new ArrayList<Instance>();
for(int dim = 0; dim < numDimensions; dim++)
Attribute current = new Attribute("Attribute" + dim, dim);
if(dim == 0)
for(int obj = 0; obj < numInstances; obj++)
instances.add(new SparseInstance(numDimensions));
for(int obj = 0; obj < numInstances; obj++)
instances.get(obj).setValue(current, data[dim][obj]);
atts.add(current);
Instances newDataset = new Instances("Dataset", atts, instances.size());
for(Instance inst : instances)
newDataset.add(inst);
【讨论】:
太棒了 这很有用。但是,在编码时,我遇到了一个错误。 我在问题中添加了例外。 @AakarGupta 与答案here 类似,您的数据必须包含类索引,因此Attribute
说明对象属于哪个类。你没有设置这个。如果可行,请考虑accept我的回答。
好的,前面的错误不存在,但即使在设置类索引后,我在同一行上也遇到了另一个异常。这是堆栈跟踪 -
Thread [main] (Suspended (exception IndexOutOfBoundsException)) ArrayList您想要构造一个Instances 对象,该类将覆盖toString()
以以ARFF 格式输出。如果 FastVector 已被弃用,您可以使用 Vector。
【讨论】:
以上是关于java 如何获得一个文件夹的创建时间 具体点的主要内容,如果未能解决你的问题,请参考以下文章