将double小数转化成百分数字符串

double num = 0.9563;
 
String numPersentage = num.ToString("P");
原文地址:https://www.cnblogs.com/Strugglehard/p/7338270.html