本文整理匯總了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();
}