Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6997009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:13:46+00:00 2026-05-27T20:13:46+00:00

I got the coding separately for these Line breaking & Tab Spacing. Line Spacing:

  • 0

I got the coding separately for these Line breaking & Tab Spacing.

Line Spacing:

private void drawString(Graphics g, String text, int x, int y) {
    for (String line : text.split("\n")) {
        g.drawString(line, x, y += g.getFontMetrics().getHeight());
    }
} 

Tab Spacing:

private void drawtabString(Graphics g, String text, int x, int y) {
    for (String line : text.split("\t")) {
        g.drawString(line, x += g.getFontMetrics().getHeight(), y);
    }
}

How can I combine this codes?

Where I want the out put of g.drawString("Line 1\t:Words\t\nLine 2\t:\tWords", x, y); :
Like;

Line 1 [tab space]: [tabspace] Words
Line 2 [tab space]: [tabspace] Words
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:13:47+00:00Added an answer on May 27, 2026 at 8:13 pm
    private void drawString(Graphics g, String text, int x, int y) {
        for (String line : text.split("\n")) {
            drawtabString(g, line, x, y += g.getFontMetrics().getHeight());
        }
    } 
    

    Note: embedding the modification of the y variable inside the method call makes it confusing. I would separate it into 2 instructions to make the code more obvious:

    drawtabString(g, line, x, y);
    y += g.getFontMetrics().getHeight();
    

    PS: are you sure you don’t want to simply use a JTextArea?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In answering this question ( https://stackoverflow.com/questions/352317/c-coding-question#352327 ), it got me wondering... Is there any
I'm kinda new here and I've got a programming/coding related question you guys maybe
I got this crash: this class is not key value coding-compliant for the key
I'm coding a prototype, but got problems with the GUI. I want the JPanel
I was coding a snake game, and i got an apple image to use
I got confused with this two lines of coding : this.class.methods.name This is called
Basic question here, just got curious about coding a simple formula out, and wanted
This coding i got from here. I get error in log cat view like
I got easily confused by jQuery's coding style. So many brackets, incline functions and
I got into the habit of coding my error handling this way: NSError* error

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.