Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries). Thank you
For a number of years now I have been unable to get a decent answer to the following question: why are some developers so against checked exceptions. I have had numerous conversations, read things on blog, read what Bruce Eckel had to say (the first person I saw speak out against them). I am currently writing some new code and paying very careful attention to how I deal with exceptions. I ...
I have a question about formatting the Rupee currency (Indian Rupee - INR). Typically a value like 450500 is formatted and shown as 450,500. In India, the same value is displayed as 4,50,500 For example, numbers here are represented as: 1 10 100 1,000 10,000 1,00,000 10,00,000 1,00,00,000 10,00,00,000 Refer Indian Numbering System The separators are after two digits, except for the last s...
Java's equivalence to Python's "Got value: %s" % variable?
What is the Java convention when it comes to user input validation in SWT? I read that there are FieldEditors which are very convenient fields but sadly only for preferences and dialogue boxes. I also read that there is an IValidator interface. But it is often used with data binding, which is in my case, most of my inputs do not need any data binding yet. Also, IValidator requires me to write...
i m making a calculation and i m getting 12,443. i want to round it to 12.40..this is the way i m trying to do it but i m getting 12 instead of 12.40 float result=Math.round( (new Float(result1)*0.3)+(new Float(result2)*0.7)); vprosvasis.setText(Float.toString(result)); for example,if i get 12,70001 i want to round to 12,7,if i get 13,4402 to round it to 13,4 , ...
Checked exceptions need to be caught or declared to be thrown at compilation time but runtimeexceptions need not ...why we give important only to checked exception ...
When my double value exceed from 7 digits it's show value in scientific notation. But, i don't want scientific notation. DecimalFormat is one way to do the same but, for that i require to convert value into string. is it possible the same conversion without converting double to string.
I have this class: import java.text.DateFormat; import java.text.SimpleDateFormat; public class Test { public static void main(String[] argv) { DateFormat df = new SimpleDateFormat("dd/MM/yyyy"); String h = df.format(1); System.out.println(h);//output: } } It compiles without problems with openjdk 7. AFAIK there's no DateFormat#format(int). Is there any ...
Tried searching in the Java String API with no answer. I am trying to create Java strings with a specified size. I noticed that Java Strings do not end in the null character (\0). Basically, I would like to be able to create strings such as: String myString = new String("Charles", 32); where myString will contain "Charles <-- 24 spaces --> \0" There is no suc...
  /*
   * Copyright 1996-2005 Sun Microsystems, Inc.  All Rights Reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.  Sun designates this
   * particular file as subject to the "Classpath" exception as provided
   * by Sun in the LICENSE file that accompanied this code.
  *
  * This code is distributed in the hope that it will be useful, but WITHOUT
  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  * version 2 for more details (a copy is included in the LICENSE file that
  * accompanied this code).
  *
  * You should have received a copy of the GNU General Public License version
  * 2 along with this work; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  *
  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  * CA 95054 USA or visit www.sun.com if you need additional information or
  * have any questions.
  */
 
 /*
  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  *
  *   The original version of this source code and documentation is copyrighted
  * and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
  * materials are provided under terms of a License Agreement between Taligent
  * and Sun. This technology is protected by multiple US and International
  * patents. This notice and attribution to Taligent may not be removed.
  *   Taligent is a registered trademark of Taligent, Inc.
  *
  */
 
 package java.text;
 
Format is an abstract base class for formatting locale-sensitive information such as dates, messages, and numbers.

Format defines the programming interface for formatting locale-sensitive objects into Strings (the format method) and for parsing Strings back into objects (the parseObject method).

Generally, a format's parseObject method must be able to parse any string formatted by its format method. However, there may be exceptional cases where this is not possible. For example, a format method might create two adjacent integer numbers with no separator in between, and in this case the parseObject could not tell which digits belong to which number.

Subclassing

The Java Platform provides three specialized subclasses of Format-- DateFormat, MessageFormat, and NumberFormat--for formatting dates, messages, and numbers, respectively.

Concrete subclasses must implement three methods:

  1. format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
  2. formatToCharacterIterator(Object obj)
  3. parseObject(String source, ParsePosition pos)
These general methods allow polymorphic parsing and formatting of objects and are used, for example, by MessageFormat. Subclasses often also provide additional format methods for specific input types as well as parse methods for specific result types. Any parse method that does not take a ParsePosition argument should throw ParseException when no text in the required format is at the beginning of the input text.

Most subclasses will also implement the following factory methods:

  1. getInstance for getting a useful format object appropriate for the current locale
  2. getInstance(Locale) for getting a useful format object appropriate for the specified locale
In addition, some subclasses may also implement other getXxxxInstance methods for more specialized control. For example, the NumberFormat class provides getPercentInstance and getCurrencyInstance methods for getting specialized number formatters.

Subclasses of Format that allow programmers to create objects for locales (with getInstance(Locale) for example) must also implement the following class method:

 public static Locale[] getAvailableLocales()
 

And finally subclasses may define a set of constants to identify the various fields in the formatted output. These constants are used to create a FieldPosition object which identifies what information is contained in the field and its position in the formatted result. These constants should be named item_FIELD where item identifies the field. For examples of these constants, see ERA_FIELD and its friends in DateFormat.

Synchronization

Formats are generally not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.

public abstract class Format implements SerializableCloneable {
    private static final long serialVersionUID = -299282585814624189L;

    
Sole constructor. (For invocation by subclass constructors, typically implicit.)
    protected Format() {
    }

    
Formats an object to produce a string. This is equivalent to
format(obj, new StringBuffer(), new FieldPosition(0)).toString();

Parameters:
obj The object to format
Returns:
Formatted string.
Throws:
java.lang.IllegalArgumentException if the Format cannot format the given object
    public final String format (Object obj) {
        return format(objnew StringBuffer(), new FieldPosition(0)).toString();
    }

    
Formats an object and appends the resulting text to a given string buffer. If the pos argument identifies a field used by the format, then its indices are set to the beginning and end of the first such field encountered.

Parameters:
obj The object to format
toAppendTo where the text is to be appended
pos A FieldPosition identifying a field in the formatted text
Returns:
the string buffer passed in as toAppendTo, with formatted text appended
Throws:
java.lang.NullPointerException if toAppendTo or pos is null
java.lang.IllegalArgumentException if the Format cannot format the given object
    public abstract StringBuffer format(Object obj,
                    StringBuffer toAppendTo,
                    FieldPosition pos);

    
Formats an Object producing an AttributedCharacterIterator. You can use the returned AttributedCharacterIterator to build the resulting String, as well as to determine information about the resulting String.

Each attribute key of the AttributedCharacterIterator will be of type Field. It is up to each Format implementation to define what the legal values are for each attribute in the AttributedCharacterIterator, but typically the attribute key is also used as the attribute value.

The default implementation creates an AttributedCharacterIterator with no attributes. Subclasses that support fields should override this and create an AttributedCharacterIterator with meaningful attributes.

Parameters:
obj The object to format
Returns:
AttributedCharacterIterator describing the formatted value.
Throws:
java.lang.NullPointerException if obj is null.
java.lang.IllegalArgumentException when the Format cannot format the given object.
Since:
1.4
        return createAttributedCharacterIterator(format(obj));
    }

    
Parses text from a string to produce an object.

The method attempts to parse text starting at the index given by pos. If parsing succeeds, then the index of pos is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed object is returned. The updated pos can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of pos is not changed, the error index of pos is set to the index of the character where the error occurred, and null is returned.

Parameters:
source A String, part of which should be parsed.
pos A ParsePosition object with index and error index information as described above.
Returns:
An Object parsed from the string. In case of error, returns null.
Throws:
java.lang.NullPointerException if pos is null.
    public abstract Object parseObject (String sourceParsePosition pos);

    
Parses text from the beginning of the given string to produce an object. The method may not use the entire text of the given string.

Parameters:
source A String whose beginning should be parsed.
Returns:
An Object parsed from the string.
Throws:
ParseException if the beginning of the specified string cannot be parsed.
    public Object parseObject(String sourcethrows ParseException {
        ParsePosition pos = new ParsePosition(0);
        Object result = parseObject(sourcepos);
        if (pos.index == 0) {
            throw new ParseException("Format.parseObject(String) failed",
                pos.errorIndex);
        }
        return result;
    }

    
Creates and returns a copy of this object.

Returns:
a clone of this instance.
    public Object clone() {
        try {
            return super.clone();
        } catch (CloneNotSupportedException e) {
            // will never happen
            return null;
        }
    }
    //
    // Convenience methods for creating AttributedCharacterIterators from
    // different parameters.
    //

    
Creates an AttributedCharacterIterator for the String s.

Parameters:
s String to create AttributedCharacterIterator from
Returns:
AttributedCharacterIterator wrapping s
        AttributedString as = new AttributedString(s);
        return as.getIterator();
    }

    
Creates an AttributedCharacterIterator containg the concatenated contents of the passed in AttributedCharacterIterators.

Parameters:
iterators AttributedCharacterIterators used to create resulting AttributedCharacterIterators
Returns:
AttributedCharacterIterator wrapping passed in AttributedCharacterIterators
                       AttributedCharacterIterator[] iterators) {
        AttributedString as = new AttributedString(iterators);
        return as.getIterator();
    }

    
Returns an AttributedCharacterIterator with the String string and additional key/value pair key, value.

Parameters:
string String to create AttributedCharacterIterator from
key Key for AttributedCharacterIterator
value Value associated with key in AttributedCharacterIterator
Returns:
AttributedCharacterIterator wrapping args
                      String stringAttributedCharacterIterator.Attribute key,
                      Object value) {
        AttributedString as = new AttributedString(string);
        as.addAttribute(keyvalue);
        return as.getIterator();
    }

    
Creates an AttributedCharacterIterator with the contents of iterator and the additional attribute key value.

Parameters:
iterator Initial AttributedCharacterIterator to add arg to
key Key for AttributedCharacterIterator
value Value associated with key in AttributedCharacterIterator
Returns:
AttributedCharacterIterator wrapping args
              AttributedCharacterIterator iterator,
              AttributedCharacterIterator.Attribute keyObject value) {
        AttributedString as = new AttributedString(iterator);
        as.addAttribute(keyvalue);
        return as.getIterator();
    }


    
Defines constants that are used as attribute keys in the AttributedCharacterIterator returned from Format.formatToCharacterIterator and as field identifiers in FieldPosition.

Since:
1.4
    public static class Field extends AttributedCharacterIterator.Attribute {
        // Proclaim serial compatibility with 1.4 FCS
        private static final long serialVersionUID = 276966692217360283L;

        
Creates a Field with the specified name.

Parameters:
name Name of the attribute
        protected Field(String name) {
            super(name);
        }
    }


    
FieldDelegate is notified by the various Format implementations as they are formatting the Objects. This allows for storage of the individual sections of the formatted String for later use, such as in a FieldPosition or for an AttributedCharacterIterator.

Delegates should NOT assume that the Format will notify the delegate of fields in any particular order.

See also:
FieldPosition.Delegate
CharacterIteratorFieldDelegate
    interface FieldDelegate {
        
Notified when a particular region of the String is formatted. This method will be invoked if there is no corresponding integer field id matching attr.

Parameters:
attr Identifies the field matched
value Value associated with the field
start Beginning location of the field, will be >= 0
end End of the field, will be >= start and <= buffer.length()
buffer Contains current formatted value, receiver should NOT modify it.
        public void formatted(Format.Field attrObject valueint start,
                              int endStringBuffer buffer);

        
Notified when a particular region of the String is formatted.

Parameters:
fieldID Identifies the field by integer
attr Identifies the field matched
value Value associated with the field
start Beginning location of the field, will be >= 0
end End of the field, will be >= start and <= buffer.length()
buffer Contains current formatted value, receiver should NOT modify it.
        public void formatted(int fieldIDFormat.Field attrObject value,
                              int startint endStringBuffer buffer);
    }
New to GrepCode? Check out our FAQ X