gpt4 book ai didi

java - 在 JButton 的文本中包含减号上标

转载 作者:行者123 更新时间:2023-12-01 07:23:28 25 4
gpt4 key购买 nike

我试图将 JButton 的文本设置为 UTF-8 编码的“Compute b⁻¹ (mod a)”,但这两种尝试都不起作用。问题是减号上标,但不确定我能做什么。

尝试1:

_computeModInverseButton = new JButton("Compute b⁻¹ (mod a)");

enter image description here

尝试2:

    _computeModInverseButton = new JButton("Compute b<html><sup>-1</sup></html> (mod a)"); 

enter image description here

所以问题是我的 HTML 格式,但现在是

_computeModInverseButton = new JButton("Compute b-1 (mod a)");

看起来像enter image description here

如何设置其格式以适合上标?

最佳答案

参见https://docs.oracle.com/javase/tutorial/uiswing/components/html.html

To specify that a component's text has HTML formatting, just put the tag at the beginning of the text, then use any valid HTML in the remainder. Here is an example of using HTML in a button's text:

button = new JButton("<html><b><u>T</u>wo</b><br>lines</html>");

关于java - 在 JButton 的文本中包含减号上标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30196608/

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