String.format()

Posted 永旗狍子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String.format()相关的知识,希望对你有一定的参考价值。

String.format()

// 制定字符串格式和参数生成格式化的字符串
String String.format(String fmt, Object... args);
    String str=null;  
    str=String.format("Hi,%s", "qyq");  
    System.out.println(str);  
    str=String.format("Hi,%s %s %s", "qyq","是个","大帅哥");  

    //输出
    Hi,qyq
    Hi,qyq 是个 大帅哥 
 

preview 在向redis中传入json(entity)数据时:

@Component
public class RedisQueueListener {

    @Autowired
    private StringRedisTemplate stringRedisTemplate;
    @Autowired
    private Gson gson;

    private static final String EMP_PREX="emp:%s";

    @RabbitListener(queues = "redis-queue")
    public void insertIoRedis(Emp emp, Channel channel, Message message){

        System.out.println("redis:"+emp);

        try {
            // 把对象转成JSON ,一般情况下会把对象先转成JSON,然后在存到redis中
            String json = gson.toJson(emp);
            String key=String.format(EMP_PREX,emp.getEmpno());
            stringRedisTemplate.opsForValue().set(key,json);

            channel.basicAck(message.getMessageProperties().getDeliveryTag(),false);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 

以上是关于String.format()的主要内容,如果未能解决你的问题,请参考以下文章

string.format()的用法?

string.Format 如何处理空值?

我将如何编写 String.Format 扩展方法?

如何在 String.Format 中转义 %?

等效于 jQuery 中的 String.format

如何反转 String.Format("0:C"..) [重复]