本文整理汇总了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();
}
示例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();
}