在Java ME中,我需要做一個簡單的字符串替換: String.format("This string contains placeholders %s %s %s", "first", "second", "third")
;
佔位符不必是字符串的結尾:Java ME:格式化字符串最簡單的方法是什麼?
String.format ("Your name is %s and you are %s years old", "Mark", "18");
但是,據我所看到的,String.format
方法不是在J2ME中使用。什麼是替代這個?如何在不編寫自己的函數的情況下實現簡單的字符串格式化?
thanx,我結束了使用我自己的功能,但thanx無論如何。 – Maggie