我使用此代码
short s = (short) Integer.parseInt("3321",16);
从3321
转换为13089
如何进行反转并从13089
转换为3321
?
答案 0 :(得分:2)
$("#addItem").on('click', function(e) {
$('tr:last').after("Added Row for Items.");
e.preventDefault();
});
<br>
$("#addCustomer").on('click', function(e) {
$('tr:last').after("Added Row for Customer.");
e.preventDefault();
});
提供method for this。
Integer
String out = Integer.toHexString(13089);
的值为out
。