| format ( object_array ) | ใช้คืนค่า ข้อความ ที่ได้หลังจากการจัดรูปแบบแล้ว |
|---|
method:format ( object_array );
return type:String
content:ใช้คืนค่า ข้อความ ที่ได้หลังจากการจัดรูปแบบแล้ว
example:MessageFormat message_format = new MessageFormat ( "{1} explain about {0}." ); String [] str_data = { "JAVA-SWING", "E-Learning :: " }; String data_format = message_format.format ( str_data );