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

  • Home
  • SEARCH
  • 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 4545144
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:46:17+00:00 2026-05-21T15:46:17+00:00

I have a weird problem that I don’t fully understand how to solve. Could

  • 0

I have a weird problem that I don’t fully understand how to solve. Could someone please give me some pointers on hashmaps?

I have a variable:

/servlet/charting?base_color=grey&chart_width=288&chart_height=160&chart_type=png&chart_style=manufund_pie&3DSet=true&chart_size=small&leg_on=left&static_xvalues=10.21,12.12,43.12,12.10,&static_labels=blue,red,green,purple"

I basically want 10.21,12.12,43.12,12.10 to be associated with blue,red,green,purple (in the order displayed)

In python I created a method that does this with:

def stripChart(name):
    name = str(name)
    name = urlparse.urlparse(name)
    name = cgi.parse_qs(name.query)
    name = dict(zip( name['static_labels'][0].split(','), name['static_xvalues'][0].split(',')))

Not sure how to do this in java. So far I have:

URL imgURL = new URL (imgTag);
String[] result = imgURL.getFile().split("&");
 for (int x=0; x<result.length; x++)
     System.out.println(result[x]);

This gives me:

chart_width=288
chart_height=160
chart_type=png
chart_style=manufund_pie
3DSet=true
chart_size=small
leg_on=left
static_xvalues=10.21,12.12,43.12,12.10,
static_labels=blue,red,green,purple,

At this point I’m confused how to link static_labels and static_xvalues values.

Thanks so much. Any pointers would be awesome.

  • 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-21T15:46:18+00:00Added an answer on May 21, 2026 at 3:46 pm

    You want to look at StringTokenizer

    Something like this (assuming you stored the labels into the String ‘static_labels’ and the values in the String ‘static_xvalues’):

    HashMap<String, Double> colorMap = new HashMap<String, Double>();
    StringTokenizer labelTok = new StringTokenizer(static_labels, ",");
    StringTokenizer valuesTok = new StringTokenizer(static_xvalues, ",");
    while(labelTok.hasMoreElements()){
      assert(valuesTok.hasMoreElements());
      colorMap.put(labelTok.nextElement(), Double.parseDouble(valuesTok.nextElement()));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a weird date rounding problem that hopefully someone can solve. My client
This is a really weird problem that I have been having. When I download
i have a weird problem. i would like to delete an assembly(plugin.dll on harddisk)
I have a weird problem with images in visual web developer, I cant change
We have a weird intermittent problem with saving from Word 2007 to our SharePoint
I have a very weird problem: sometimes when I call nHibernate update to an
This is a weird problem I have started having recently. My team is developing
The following code demonstrates a weird problem I have in a Turbo C++ Explorer
This is kind of a weird problem, but I have to create a search
I have a weird issue that only seems to be affecting IE 7. The

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.