gpt4 book ai didi

java - 在android中处理下划线/粗体/斜体文本

转载 作者:太空宇宙 更新时间:2023-11-04 14:15:36 26 4
gpt4 key购买 nike

我正在使用 jxl api 处理 Excel 文件中的内容并将它们加载到 json 字符串中。然后,我解析 json 字符串并在屏幕上的各种 TextView 中显示内容。如果 Excel 中有任何下划线/粗体/斜体文本,则它不会相应地显示在 TextView 中。有人可以建议如何确保在 Excel 中完成的带有下划线/粗体/斜体的任何文本也显示在 TextView 中。下面是我用来处理 Excel 文件中的字符串的代码

w = Workbook.getWorkbook(inputWorkbook);
Sheet sheet = w.getSheet(0);
Cell storyNameCell = sheet.getCell(1,1);
String Title = storyNameCell.getContents();
//get more cells into Strings
//form the json string from all the String contents above

这就是我将上面的 JSON 字符串保存到 Android 设备上的本地文件中的方法

    String FILENAME = getString(R.string.app_name)+"_"+storyTitle;
FileOutputStream output = openFileOutput(FILENAME,MODE_PRIVATE);
OutputStreamWriter writer = new OutputStreamWriter(output, "UTF-8");
writer.write(jObjStoryTitle.toString());
writer.flush();
writer.close();

最后,我从文件中获取任何 JSON 字符串,以便根据用户请求进行显示。

    BufferedReader in = new BufferedReader(new InputStreamReader(this.getBaseContext().openFileInput( quizFileName), "UTF-8"));
while ((str = in.readLine()) != null)
fileContent.append(str);
fileString = new String(fileContent);
jObjStoryTitle = new JSONObject(fileString);

最佳答案

我终于能够解决这个问题了。这就是我所做的。- 使用 apache POI api 在我的 Android 应用程序中读取 xls 文件。 Jxl api 没有帮助,因为它无法识别单元格文本部分中嵌入的任何字体/样式。-因此,使用 Apache-POI,我可以找出文本的哪一部分包含下划线字符。-然后我在该部分之前/之后嵌入了 html 标签- 然后使用Html对象在Textview中显示如下

myTextView.setText(Html.fromHtml(underlinedText));

关于java - 在android中处理下划线/粗体/斜体文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27786417/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com