Java Formatter Usage chatting(String fmt, Object... args)

Here you can find the source of chatting(String fmt, Object... args)

Description

Formatted output

License

Open Source License

Declaration

public static boolean chatting(String fmt, Object... args) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.Formatter;

public class Main {
    /**/*  w ww  .jav a 2 s.com*/
     * Formatted output
     */
    public static boolean chatting(String fmt, Object... args) {
        Formatter f = new Formatter(System.out);
        f.format(fmt, args);
        return true;
    }
}

Related

  1. byteArrayToHexString(byte[] bytes)
  2. byteArrayToHexString(byte[] bytes, int pos, int len)
  3. bytesToHexString(byte[] bytes)
  4. byteToHex(final byte[] bytes)
  5. byteToHexWithPrefix(final byte[] data)
  6. convertRGBDecToHex(String decimal)
  7. convertTimeToString(double d, String timeFormat)
  8. convertToMillions(double tmp)
  9. createHexadecimalString(byte[] data)