当前位置: 首页>>代码示例>>Java>>正文


Java RmString类代码示例

本文整理汇总了Java中org.quickbundle.util.RmString的典型用法代码示例。如果您正苦于以下问题:Java RmString类的具体用法?Java RmString怎么用?Java RmString使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


RmString类属于org.quickbundle.util包,在下文中一共展示了RmString类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: fileToString

import org.quickbundle.util.RmString; //导入依赖的package包/类
public static String fileToString(File file) throws IOException {
	StringBuilder str = new StringBuilder();
	long totalSize = 0;
	str.append("卷(");
	str.append(file.toString());
	str.append(")的文件夹 PATH 列表\n");
	str.append("卷信息\t");
	str.append(" 存在:");
	str.append(file.exists());
	str.append("  是文件夹:");
	str.append(file.isDirectory());
	str.append("  能读:");
	str.append(file.canRead());
	str.append("  能写:");
	str.append(file.canWrite());
	str.append("  是否隐藏:");
	str.append(file.isHidden());
	str.append("  最后修改时间:");
	str.append(RmDateHelper.getFormatDateTimeDesc(file.lastModified()));
	str.append("\n");
	str.append(file.getAbsoluteFile());
	str.append("\n");
	RmString rmstr = listFileRecursive(file, "│├─", totalSize);
	str.append(rmstr.toString());
	str.append("\n总大小:");
	str.append(((Long)rmstr.getAttribute("totalSize")).longValue() / 1024);
	str.append(" k, ");
	str.append(((Long)rmstr.getAttribute("totalSize")).longValue());
	str.append("B.");
	return str.toString();
}
 
开发者ID:quickbundle,项目名称:qb-core,代码行数:32,代码来源:RmFileHelper.java

示例2: fileToString

import org.quickbundle.util.RmString; //导入依赖的package包/类
public static String fileToString(File file) throws IOException {
	StringBuilder str = new StringBuilder();
	long totalSize = 0;
	str.append("卷(");
	str.append(file.toString());
	str.append(")的文件夹 PATH 列表\n");
	str.append("卷信息\t");
	str.append(" 存在:");
	str.append(file.exists());
	str.append("  是文件夹:");
	str.append(file.isDirectory());
	str.append("  能读:");
	str.append(file.canRead());
	str.append("  能写:");
	str.append(file.canWrite());
	str.append("  是否隐藏:");
	str.append(file.isHidden());
	str.append("  最后修改时间:");
	str.append(getFormatDateTimeDesc(file.lastModified()));
	str.append("\n");
	str.append(file.getAbsoluteFile());
	str.append("\n");
	RmString rmstr = listFileRecursive(file, "│├─", totalSize);
	str.append(rmstr.toString());
	str.append("\n总大小:");
	str.append(((Long)rmstr.getAttribute("totalSize")).longValue() / 1024);
	str.append(" k, ");
	str.append(((Long)rmstr.getAttribute("totalSize")).longValue());
	str.append("B.");
	return str.toString();
}
 
开发者ID:henryyan,项目名称:java-lib,代码行数:32,代码来源:RmStringHelper.java


注:本文中的org.quickbundle.util.RmString类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。