搜索
首页Javajava教程Java格式化程序

Java格式化程序

Aug 30, 2024 pm 03:18 PM
java

The Java Formatter is a class in the java.util package that can be used to format and write data to various output formats. It is a final class, meaning it cannot be extended. However, it can implement certain interfaces such as “Closeable” and “Flushable”. By implementing the Closeable interface, the Formatter class provides a default method called close() to release any resources associated with input and output operations.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Syntax:

Java has default packages and its own methods for predefined and customized methods so that it will apply to the user requirements in the project. Likewise, java.util.formatter has some syntax that has been used for declaring the default methods in the projects. Find the below code syntax.

import java.util.*; // it will import all the util components if suppose we need formatter classes only         //means we will import that alone
public class{
public static void main(String[] args)
{
Formatter f=new Formatter();//create the instance for the formatter class
f.format(“%1$,.6f”);//example for the format() method arguments we can use any number of arguments based upon the requirements
---some java code logics-----
}
}

How does Formatter Function Work in Java?

Java has a constructor for creating the objects. Whenever we have not assigned any constructor in the code, it will automatically call the default constructor. Likewise, we have other java util and io packages classes used for file creation, Accessing the file, read/write buffer storage and data for the file, and other stream functionalities like input, output stream, and PrintStream objects. The Formatter() is one of the main constructors for creating the formatter objects and is one of the no-argument constructors in the java util packages.

If the user specifies the values, it depends upon the project requirements. The argument will be varied upon the constructors if we can use the Formatter(Appendable a, Locale l); the same constructor name has two more arguments, Appendable and Locale locale is one of the region level objects due to this object instance the output data format will be the region-wise according to the user-specified locales. If suppose the user does not mention the locale region it will take and uses the default locale, it’s mainly necessary to tailor the outputs according to the Geo-political or geographical regions based on the cultural sensitives data, such as formatting the date and times the locale object, values will be the decimal point of values that will be separator with the constructor.

Examples of Java Formatter

Following are the examples given below:

Example #1

Code:

package com.first;
public class Example {
public static void main(String[] args) {
String s = String.format("%S", 231);
String s1 = String.format("|%X|", 231);
String s2 = String.format("|%b|", 231);
String s3 = String.format("|%d|", 231);
String s4 = String.format("|%-5d|", 231);
String s5 = String.format("|%5d|", 231);
String s6 = String.format("|%c|", 231);
String s7 = String.format("|%b|", 231);
System.out.println(s);
System.out.println(s1);
System.out.println(s2);
System.out.println(s3);
}
}

Output:

Java格式化程序

Example #2

Code:

package com.first;
import java.util.*;
public class Example {
public static void main(String[] args) {
String s = String.format("%S", 231);
String s1 = String.format("|%X|", 231);
String s2 = String.format("|%b|", 231);
String s3 = String.format("|%d|", 231);
String s4 = String.format("|%-5d|", 231);
String s5 = String.format("|%5d|", 231);
String s6 = String.format("|%c|", 231);
String s7 = String.format("|%b|", 231);
String st1 = "Welcome To My Domain.";
System.out.println(s);
System.out.println(s1);
System.out.println(s2);
System.out.println(s3);
String st2 = String.format("Welcome To My Domain %s", st1);
String st3 = String.format("Have a Nice Day %.9f", 56.43281);
String st4 = String.format("Good Day user %19.7f", 56.43281);
System.out.println(st1);
System.out.println(st2);
System.out.println(st3);
Formatter f=new Formatter();
f.format("%2$5s %4$5s %2$8s", "User",
"Welcome", "To My Domain");
System.out.println(f);
}
}

Output:

Java格式化程序

Example #3

Code:

package com.first;
import java.util.*;
import java.util.GregorianCalendar;
public class Example {
public static void main(String[] args) {
String s = String.format("%S", 231);
String s1 = String.format("|%X|", 231);
String s2 = String.format("|%b|", 231);
String s3 = String.format("|%d|", 231);
String s4 = String.format("|%-5d|", 231);
String s5 = String.format("|%5d|", 231);
String s6 = String.format("|%c|", 231);
String s7 = String.format("|%b|", 231);
String st1 = "Welcome To My Domain.";
System.out.println(s);
System.out.println(s1);
System.out.println(s2);
System.out.println(s3);
String st2 = String.format("Welcome To My Domain %s", st1);
String st3 = String.format("Have a Nice Day %.9f", 56.43281);
String st4 = String.format("Good Day user %19.7f", 56.43281);
System.out.println(st1);
System.out.println(st2);
System.out.println(st3);
Formatter f=new Formatter();
f.format("%2$5s %2$5s %2$8s", "User",
"Welcome", "To My Domain");
System.out.println(f);
StringBuilder sb=new StringBuilder();
Formatter f1=new Formatter(sb);
f1.format(Locale.JAPAN,"%.4f", -1432.695);
System.out.println(f1);
Formatter f2=new Formatter();
f2.format(Locale.US, "%.4f", -1432.695);
System.out.println(f2);
Formatter f3=new Formatter();
f3.format(Locale.GERMANY,"%1$te %1$cB, %2$tY",
Calendar.getInstance());
System.out.println(f3);
Formatter f4=new Formatter();
f4.format(Locale.CANADA,"%3$te %2$tB, %1$cY",
Calendar.getInstance());
System.out.println(f4);
}
}

Output:

Java格式化程序

Conclusion

The java formatter utility classes will be used for different regional continents users will access the applications if it depends upon the web-based applications. When we use a formatter is generally not thread-safe so that the single user will be accessed; moreover not applicable for multi-threading concepts.

以上是Java格式化程序的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
如何将Maven或Gradle用于高级Java项目管理,构建自动化和依赖性解决方案?如何将Maven或Gradle用于高级Java项目管理,构建自动化和依赖性解决方案?Mar 17, 2025 pm 05:46 PM

本文讨论了使用Maven和Gradle进行Java项目管理,构建自动化和依赖性解决方案,以比较其方法和优化策略。

如何使用适当的版本控制和依赖项管理创建和使用自定义Java库(JAR文件)?如何使用适当的版本控制和依赖项管理创建和使用自定义Java库(JAR文件)?Mar 17, 2025 pm 05:45 PM

本文使用Maven和Gradle之类的工具讨论了具有适当的版本控制和依赖关系管理的自定义Java库(JAR文件)的创建和使用。

如何使用咖啡因或Guava Cache等库在Java应用程序中实现多层缓存?如何使用咖啡因或Guava Cache等库在Java应用程序中实现多层缓存?Mar 17, 2025 pm 05:44 PM

本文讨论了使用咖啡因和Guava缓存在Java中实施多层缓存以提高应用程序性能。它涵盖设置,集成和绩效优势,以及配置和驱逐政策管理最佳PRA

如何将JPA(Java持久性API)用于具有高级功能(例如缓存和懒惰加载)的对象相关映射?如何将JPA(Java持久性API)用于具有高级功能(例如缓存和懒惰加载)的对象相关映射?Mar 17, 2025 pm 05:43 PM

本文讨论了使用JPA进行对象相关映射,并具有高级功能,例如缓存和懒惰加载。它涵盖了设置,实体映射和优化性能的最佳实践,同时突出潜在的陷阱。[159个字符]

Java的类负载机制如何起作用,包括不同的类载荷及其委托模型?Java的类负载机制如何起作用,包括不同的类载荷及其委托模型?Mar 17, 2025 pm 05:35 PM

Java的类上载涉及使用带有引导,扩展程序和应用程序类负载器的分层系统加载,链接和初始化类。父代授权模型确保首先加载核心类别,从而影响自定义类LOA

如何将Java的RMI(远程方法调用)用于分布式计算?如何将Java的RMI(远程方法调用)用于分布式计算?Mar 11, 2025 pm 05:53 PM

本文解释了用于构建分布式应用程序的Java的远程方法调用(RMI)。 它详细介绍了接口定义,实现,注册表设置和客户端调用,以解决网络问题和安全性等挑战。

如何使用Java的插座API进行网络通信?如何使用Java的插座API进行网络通信?Mar 11, 2025 pm 05:53 PM

本文详细介绍了用于网络通信的Java的套接字API,涵盖了客户服务器设置,数据处理和关键考虑因素,例如资源管理,错误处理和安全性。 它还探索了性能优化技术,我

如何在Java中创建自定义网络协议?如何在Java中创建自定义网络协议?Mar 11, 2025 pm 05:52 PM

本文详细介绍了创建自定义Java网络协议。 它涵盖协议定义(数据结构,框架,错误处理,版本控制),实现(使用插座),数据序列化和最佳实践(效率,安全性,维护

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解锁Myrise中的所有内容
3 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

SecLists

SecLists

SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具