格式化java代碼 Java數(shù)據(jù)格式化

java數(shù)字格式化

用 %3.2f格式化后, 替換逗號即可;

我們提供的服務(wù)有:成都網(wǎng)站制作、網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、船山ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的船山網(wǎng)站制作公司

同理, 用 #,##0.00 格式化后, 替換, 為空格即可.

你的需求:

double?x?=?1234.5;

DecimalFormat?df?=?new?DecimalFormat("#,###.0");

String?xs?=?df.format(x);

xs?=?xs.replace(",",?"?").replace(".",?",");

System.out.println(xs);

輸出

1?234,5

JAVA 中獲取時間怎么格式化?

時間格式化輸出主要有兩種方式,代碼如下:

//使用Calendar

Calendar now = Calendar.getInstance();

System.out.println("年:" + now.get(Calendar.YEAR));

System.out.println("月:" + (now.get(Calendar.MONTH) + 1));

System.out.println("日:" + now.get(Calendar.DAY_OF_MONTH));

System.out.println("時:" + now.get(Calendar.HOUR_OF_DAY));

System.out.println("分:" + now.get(Calendar.MINUTE));

ystem.out.println("秒:" + now.get(Calendar.SECOND));

//使用Date

Date d = new Date();

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

System.out.println("當(dāng)前時間:" + sdf.format(d));

擴(kuò)展資料

JAVA中獲取當(dāng)前系統(tǒng)時間。

import java.util.Date;

import java.text.SimpleDateFormat;

public class NowString {

public static void main(String[] args) {

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//設(shè)置日期格式

System.out.println(df.format(new Date()));// new Date()為獲取當(dāng)前系統(tǒng)時間

}

}

參考資料來源:百度百科:Java

eclipse怎樣對java代碼自動排版,快速格式化,快速使代碼對齊

使代碼快速對齊的方法有兩種,咱們先看第一種:首先打開代碼

如圖所示,找到"Source",點(diǎn)擊

在彈出的下拉框內(nèi),找到"Format",然后點(diǎn)擊

然后對比一下,就可以看到代碼自動對齊了

還有一種方法是直接使用快捷鍵“Ctrl+shift+f”,就ok了

返回代碼區(qū),然后對比一下,就可以看到代碼自動對齊了

java題,如何將數(shù)組中的數(shù)據(jù)格式化輸出?(有代碼)

import?java.util.*;

class?gongzi?{

public?static?void?main(String[]?args)?{

Scanner?kb?=?new?Scanner(System.?in?);

int?n?=?kb.nextInt();

String?name?=?"";

double?d?=?0;

double?e?=?0;

double?g?=?0;

double?k?=?0;

for?(int?i?=?0;?i??n;?i++)?{

name?=?kb.next();

d?=?kb.nextDouble();

e?=?kb.nextDouble();

g?=?kb.nextDouble();

k?=?e?+?d?-?g;

}

kb.close();

System.out.printf("%s,Salary?is:?%.2f?+?%.2f?-?%.2f?=?%.2f%n",?name,?d,?e,?g,?k);

}

}

JAVA里面如何格式化數(shù)字

樓主你好!給你寫了個測試類希望能幫助你。這兩個個方法只需要傳入你要格式話的數(shù)據(jù),就可以返回你想要的結(jié)果了。 package com.line;public class T9 {

/**

* b格式化一般數(shù)據(jù)為財務(wù)格式,eg:123,456,789.00/b

*

* @param source

* String

* @return String

*/

public static String getCaiWuData(String source) {

StringBuffer str = new StringBuffer("");

if (source != null !source.equals("") source.length() 0

!source.equals("null")) {

if (source.lastIndexOf(",") 0) {

source =formatStr(source);

}

int dotIndex = 0;

if (source.indexOf(".") 0) {

source += ".00";

}

dotIndex = source.indexOf(".");

int index = 0;

String opt = "";

opt = source.substring(0, 1);

if (opt.equals("-")) {

source = source.substring(1);

str.append("-");

dotIndex = source.indexOf(".");

}

if (dotIndex 3) {

index += 1;

str.append(source.substring(0, dotIndex));

}

if (dotIndex % 3 == 0) {

index += dotIndex / 3;

} else {

index += (dotIndex - dotIndex % 3) / 3;

}

if (index 0 dotIndex = 3) {

for (int i = index; i 0; i--) {

if (i == index) {

str.append(source.substring(0, dotIndex - i * 3));

}

if (dotIndex - i * 3 0) {

str.append(",");

}

if (i = 1) {

str.append(source.substring(dotIndex - i * 3, dotIndex

- (i - 1) * 3));

}

}

}

str.append(source.substring(dotIndex));

}

if (source.length() - source.lastIndexOf(".") 3) {

str.append("0");

}

int dot_index = str.toString().indexOf(".") + 2;

int str_len = str.toString().length();

char[] strArr = str.toString().toCharArray();

StringBuffer rev = new StringBuffer();

for (int i = str_len - 1; i 0; i--) {// 除去尾數(shù)0,小數(shù)點(diǎn)后保留2位

if (i dot_index

Integer.parseInt(new Character(strArr[i]).toString()) 0) {

rev.append(str.toString().substring(0, i + 1));

break;

} else if (i == dot_index (int) strArr[i] = 0) {

rev.append(str.toString().substring(0, dot_index + 1));

break;

}

}

return rev.toString();

}

/**

* b格式化財務(wù)數(shù)據(jù)為一般字符串,eg:123456789.00/b

*

* @param source

* String

* @return String

*/

public static String formatStr(String source) {

StringBuffer str = new StringBuffer("");

if (source != null !source.equals("") source.length() 0

!source.equals("null")) {

String temp = source.substring(0, 1);

if (temp.equals("-")) {

source = source.substring(1);

str.append("-");

}

String[] myarr = source.split(",");

int lastIndex = source.lastIndexOf(",");

if (lastIndex 0) {

for (int i = 0; i myarr.length; i++) {

str.append(myarr[i]);

}

}

if (source.lastIndexOf(",") 0) {

str.append(source);

}

if (source.lastIndexOf(".") 0) {

str.append(".00");

}

if (source.length() - source.lastIndexOf(".") 3

!"0".equals(source)) {

str.append("0");

}

} else {

return (str.append("0.00").toString());

}

return str.toString();

}

/**

* @param args

*/

public static void main(String[] args) {

T9 t=new T9();

System.out.println(t.getCaiWuData("1231313"));

System.out.println(t.formatStr("1,231,313.00"));

}}

當(dāng)前標(biāo)題:格式化java代碼 Java數(shù)據(jù)格式化
URL網(wǎng)址:http://muchs.cn/article22/docosjc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)移動網(wǎng)站建設(shè)、用戶體驗(yàn)、標(biāo)簽優(yōu)化、ChatGPT、網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)