如果我这样做或者我错过了什么,我不会。当我实施以下内容以在我的YouTube描述中创建新行时,它们就不会出现。
private static final String newLine = System.getProperty("line.separator");
mg.setDescription(new MediaDescription());
mg.getDescription().setHtmlContent("This is line one." + newLine + "This is line two." + newLine + newLine + "This is line three.");
这是如何在YouTube说明中显示的
这是第一行。
这是第二行。这是第三行。
什么时候应该这样出来。
这是第一行。
这是第二行。
这是 第三行。
我觉得我没有在这里做点什么;如果我没有得到正确的布局作为我的最终结果。
答案 0 :(得分:6)
添加换行实际上不会在HTML中创建换行符。您需要使用<br />
标记。