我正在使用 JScience API 来编写单位,但我无法使用pow方法。如何为单位写动力?
Unit<Length> centimeter = SI.CENTIMETER;
//Unit<Length> cm3 = centimeter.pow(3);eclipse suggests to add cast
Unit<Length> cm3 = (Unit<Length>) centimeter.pow(3);
System.out.println(cm3); // prints cm? instead of cm^3
答案 0 :(得分:0)
我认为它是UTF-8 3-superscript?
另见:http://www.fileformat.info/info/unicode/char/b3/index.htm
您可以通过分析cm3.toString()
byte[] bs = cm3.toString().getBytes("UTF-8");
for ( byte b : bs )
{
System.out.println( b );
}
下一个字符串的输出(使用3个上标):
byte[] bs = "cm³".getBytes( "UTF-8" ); // byte[] bs = "cm\u00B3".getBytes( "UTF-8" );
for ( byte b : bs )
{
System.out.println( b );
}
99
109
-62
-77
如果第一个字节数组的字节与第二个字节数相同,则输出正确,但您的控制台无法显示字符³