2014-12-29 90 views
-6
orderAttributeType.setName(hirTask.getEscalationLevel()); 

HI轉換, 這裏我使用這些(hirTask.getEscalationLevel).setname讓整數值是expexcting蜇value.Can任何一個可以告訴我如何解析爲整串。如何將整數值字符串值

+2

'Integer.toString(int value)' –

+2

首先在** Google **上搜索。 – Braj

+2

你嘗試過'String.valueOf(myInteger)'嗎? – TheLostMind

回答

3

您可以使用Integer.toString(int)

Integer.toString(hirTask.getEscalationLevel()) 

String.valueOf(int)

String.valueOf(hirTask.getEscalationLevel()) 

甚至

"" + hirTask.getEscalationLevel() 
+0

我不認爲'「」+ int'是一個很好的方法:) – pbespechnyi

+3

@pbespechnyi **是**爲什麼它是最後的名單! –

2

嘗試String.valueOf(int)或者整數包裝類對象integer.toString()

+2

'Integer' not'integer' :) – TheLostMind

+0

@TheLostMind,'Integer'是一個類,'integer'是一個對象;} – pbespechnyi

+2

'public static String toString(int i)':) – TheLostMind

相關問題