本文整理匯總了Java中org.apache.commons.lang3.SystemUtils.LINE_SEPARATOR屬性的典型用法代碼示例。如果您正苦於以下問題:Java SystemUtils.LINE_SEPARATOR屬性的具體用法?Java SystemUtils.LINE_SEPARATOR怎麽用?Java SystemUtils.LINE_SEPARATOR使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.commons.lang3.SystemUtils
的用法示例。
在下文中一共展示了SystemUtils.LINE_SEPARATOR屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: toString
@Override
public String toString() {
final StringBuilder gridBuilder = new StringBuilder(SystemUtils.LINE_SEPARATOR);
for (final Color[] colors : grid) {
gridBuilder.append(" ");
gridBuilder.append(StringUtils.join(colors, ','));
gridBuilder.append(SystemUtils.LINE_SEPARATOR);
}
return new ToStringBuilder(this, CustomToStringStyle.SHORT_STYLE)
.append("grid", gridBuilder)
.toString();
}
示例2: get
@Override
@Nullable
protected String[] get(Event e) {
switch (ty) {
case 0:
return new String[]{SystemUtils.OS_ARCH};
case 1:
return new String[]{SystemUtils.OS_NAME};
case 2:
return new String[]{SystemUtils.OS_VERSION};
case 3:
return new String[]{SystemUtils.getJavaHome().toString()};
case 4:
return new String[]{SystemUtils.getUserDir().toString()};
case 5:
return new String[]{SystemUtils.getUserHome().toString()};
case 6:
return new String[]{SystemUtils.USER_NAME};
case 7:
return new String[]{SystemUtils.USER_LANGUAGE};
case 8:
return new String[]{SystemUtils.USER_TIMEZONE};
case 9:
return new String[]{SystemUtils.LINE_SEPARATOR};
case 10:
return new String[]{SystemUtils.FILE_SEPARATOR};
case 11:
return new String[]{SystemUtils.PATH_SEPARATOR};
case 12:
return new String[]{SystemUtils.FILE_ENCODING};
}
return null;
}