DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2004
    Posts
    7

    problem with TEXT

    I am writing an application to show a text and measure different aspect of it as follows:

    // Simple animation with Java
    import java.awt.*;
    import javax.swing.*;
    public class AnimateEx extends JFrame {

    String theString = "Boing!!!";
    private int stringTop, stringBottom, stringWidth;


    public void paint(Graphics g)
    {
    g.drawString(theString, 100,200);
    }
    public AnimateEx()
    {
    setSize(770,420);
    setFont( new Font("TimesRoman", Font.BOLD+Font.ITALIC, 24));
    setBackground(Color.yellow);
    setForeground(Color.red);
    Graphics g=this.getGraphics();
    FontMetrics fm= g.getFontMetrics();
    stringWidth = fm.stringWidth(theString);
    stringTop = fm.getAscent();
    stringBottom = fm.getDescent();

    }

    public static void main(String[] args){
    AnimateEx ex= new AnimateEx();
    ex.setVisible(true);
    }
    }

    When I run the application without the followin lines in the constructor :
    FontMetrics fm= g.getFontMetrics();
    stringWidth = fm.stringWidth(theString);
    stringTop = fm.getAscent();
    stringBottom = fm.getDescent();


    (which I add to get some text measure )it works well but after adding those lines I got this error (no error during compile but have it when run):

    Exception in thread "main" java.lang.NullPointerException
    at AnimateEx.<init>(AnimateEx.java:20)
    at AnimateEx.main(AnimateEx.java:28)

  2. #2
    Join Date
    Nov 2004
    Location
    Norway
    Posts
    1,560

    To you guys w. a code problem !!!

    (wrong thread....)
    eschew obfuscation

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links