热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Java中的Formatterout()方法,示例

Java中的Formatterout()方法,示例原文:h

Java 中的 Formatter out()方法,示例

原文:https://www . geesforgeks . org/formatter-out-method-in-Java-with-examples/

out() 方法是 java.util.Formatter 的内置方法,它返回格式化程序输出的目的地。

语法 :

public Appendable out()

参数:该功能不接受参数。

返回值:该函数返回输出的目的地。

异常:如果在函数调用之前格式化程序已经关闭,函数抛出格式化程序关闭异常

下面是上述功能的实现:

程序 1:

// Java program to implement
// the above function
import java.util.Formatter;
import java.util.Locale;
public class Main {
    public static void main(String[] args)
    {
        // Get the string Buffer
        StringBuffer buffer
            = new StringBuffer();
        // Object creation
        Formatter frmt
            = new Formatter(buffer,
                            Locale.CANADA);
        // Format a new string
        String name = "My name is Gopal Dave";
        frmt.format("What is your name? \n%s !",
                    name);
        // Print the Formatted string
        System.out.println(frmt);
        // Prints the destination of the output
        System.out.println("\nDestination: "
                           + frmt.out());
    }
}

输出:

What is your name?
My name is Gopal Dave !
Destination: What is your name?
My name is Gopal Dave !

程序二:

// Java program to implement
// the above function
import java.util.Formatter;
import java.util.Locale;
public class Main {
    public static void main(String[] args)
    {
        try {
            // Get the string Buffer
            StringBuffer buffer
                = new StringBuffer();
            // Object creation
            Formatter frmt
                = new Formatter(buffer,
                                Locale.CANADA);
            // Format a new string
            String name = "My name is Gopal Dave";
            frmt.format("What is your name? \n%s !",
                        name);
            // Print the Formatted string
            System.out.println(frmt);
            // Formatter closed
            frmt.close();
            // Prints the destination of the output
            System.out.println("\nDestination: "
                               + frmt.out());
        }
        catch (Exception e) {
            System.out.println("Exception is: "
                               + e);
        }
    }
}

输出:

What is your name?
My name is Gopal Dave !
Exception is: java.util.FormatterClosedException

参考:https://docs . Oracle . com/javase/10/docs/API/Java/util/formatter . html # out()


推荐阅读
  • Java 中的 BigDecimal pow()方法,示例 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • Java 中 Writer flush()方法,示例 ... [详细]
  • 主要用了2个类来实现的,话不多说,直接看运行结果,然后在奉上源代码1.Index.javaimportjava.awt.Color;im ... [详细]
  • 本文探讨了如何在给定整数N的情况下,找到两个不同的整数a和b,使得它们的和最大,并且满足特定的数学条件。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 技术分享:从动态网站提取站点密钥的解决方案
    本文探讨了如何从动态网站中提取站点密钥,特别是针对验证码(reCAPTCHA)的处理方法。通过结合Selenium和requests库,提供了详细的代码示例和优化建议。 ... [详细]
  • Java 类成员初始化顺序与数组创建
    本文探讨了Java中类成员的初始化顺序、静态引入、可变参数以及finalize方法的应用。通过具体的代码示例,详细解释了这些概念及其在实际编程中的使用。 ... [详细]
  • 本文介绍了Java并发库中的阻塞队列(BlockingQueue)及其典型应用场景。通过具体实例,展示了如何利用LinkedBlockingQueue实现线程间高效、安全的数据传递,并结合线程池和原子类优化性能。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文介绍了如何在C#中启动一个应用程序,并通过枚举窗口来获取其主窗口句柄。当使用Process类启动程序时,我们通常只能获得进程的句柄,而主窗口句柄可能为0。因此,我们需要使用API函数和回调机制来准确获取主窗口句柄。 ... [详细]
  • 本文详细介绍了macOS系统的核心组件,包括如何管理其安全特性——系统完整性保护(SIP),并探讨了不同版本的更新亮点。对于使用macOS系统的用户来说,了解这些信息有助于更好地管理和优化系统性能。 ... [详细]
  • 本文介绍如何解决在 IIS 环境下 PHP 页面无法找到的问题。主要步骤包括配置 Internet 信息服务管理器中的 ISAPI 扩展和 Active Server Pages 设置,确保 PHP 脚本能够正常运行。 ... [详细]
  • 本文介绍如何使用 NSTimer 实现倒计时功能,详细讲解了初始化方法、参数配置以及具体实现步骤。通过示例代码展示如何创建和管理定时器,确保在指定时间间隔内执行特定任务。 ... [详细]
author-avatar
顺佳海外
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有