如何在不使用構造函數的情況下將String對象轉換爲hadoop中的Text對象? 有一個Text to String方法可用,但我找不到一個String to Text方法。將字符串對象轉換爲hadoop中的TEXT對象
1
A
回答
0
+0
或'new Text(string)'... – YMomb
+0
但他對使用構造函數設置String沒有興趣。 :-( –
1
Text text = new Text("your-string");
或
Text text = new Text();
text.set("your-string");
相關問題
- 1. 轉換「字符串對象」爲對象
- 2. 將字符串對象轉換爲python中的列表對象
- 3. 將Nokogiri XML對象轉換爲字符串而不使用.text
- 4. 將字符串轉換爲gson對象
- 5. 將字符串對象轉換爲istringstream
- 6. 將python'type'對象轉換爲字符串
- 7. 將字符串轉換爲JSON對象
- 8. 將字符串轉換爲對象Python
- 9. 將字符串轉換爲JS對象
- 10. 將對象轉換爲字符串
- 11. 將字符串轉換爲對象
- 12. VBScript將對象轉換爲字符串?
- 13. 將對象轉換爲字符串(java)
- 14. 將XML對象轉換爲字符串
- 15. 將對象[,]轉換爲字符串
- 16. 將對象轉換爲字符串
- 17. 將字符串轉換爲DateTime對象
- 18. 將字符串轉換爲json對象
- 19. 將字符串轉換爲datetime.time對象
- 20. 將字符串轉換爲NSDate對象
- 21. Jquery將字符串轉換爲對象
- 22. 將字符串轉換爲JavaScript對象
- 23. 將JSON對象轉換爲字符串
- 24. 將字符串轉換爲對象
- 25. 將json對象轉換爲字符串
- 26. 將字符串轉換爲Moment對象
- 27. 將類對象轉換爲字符串
- 28. PHP將對象轉換爲字符串
- 29. 將字符串轉換爲JSON對象
- 30. 將對象轉換爲XML字符串
你爲什麼不想要使用的構造函數? –