long转String

  1. 第一种:
  2. String s = String.valueOf(long)
  3. 第二种:
  4. String s = Long.toString(long)