HashMap - Turning String Into Integer And Storing Accordingly
Oct 2, 2014
When learning HashMaps in C++ I had to create the whole algorithm. In the code I created I could simply place a string into the method and it would store the names for me by turning the string into a integer and storing is accordingly. If there was a collision it would grow linearly at that location.
//play with Hash Tables
void getNames(String names) {
HashMap<String, Integer> map = new HashMap<String, Integer>();
map.put(names,22);
}
How can I do this in Java. I read about them and look at examples and they all for the most part look like this.
I am making a simple dice game and am using JOptionPane for my input, however, all input has to be a String. I need to be able to input an integer. 'note, I am using java JDK'.
One of the requirements of my programming assignment is that a user enters a command along with two numbers. For example, if I entered the following command:
I 5 6
The program create an image like this (it wouldn't be outputted though):
00000 00000 00000 00000 00000 00000
It creates a 5 x 6 "image". This is where my troubles begin. The program should also accepts other commands, such as:
L 3 2 F
which would produce (also not outputted):
00000 00F00 00000 00000 00000 00000
Here is my method for creating an "image" with an M * N array
for (int i = 0; i < column; i++) { for (int j = 0; j < row; j++) { System.out.print("0"); } System.out.println(); }
The code works, but I need to store the image in an array so it can be changed by other methods (I can't create the image manually every time). I tried doing something like this but it doesn't work:
public static String[][] createImage(int row, int column) { String[][] image = new String[row][column]; for (int i = 0; i < column; i++) { for (int j = 0; j < row; j++) { image[j][i] = "0"; } System.out.println(); } return image; }
This method outputs as many blank lines as the columns I entered and the memory location of image.
So my question is: how would I store "0" in a 2D array so that it can be accessed and changed by other methods?Or, am I using a 2D array incorrectly and will the image have to be created manually every time? If so, how would I output image if it is created in a separate method?
I have the following method that I need to implement:
{ // YOUR CODE HERE File file = new File(filename); int counter = 0; String tempArtist, tempName; Album tempAlbum; Track tempTrack;
[code]....
Ok so I updated my code from the initial post since I made some progress on my own. I guess now I'm just stuck on how to scan in the file of strings and stock it into the type Track. (I've tried using both the initial linked list for this and a temporary variable with no luck).
I am building an app, where I have to store the data eg: "hello ! how are you" in java as a string and then use scanner to get input and check if the entered word is present in the line stored. If it is stored then the entire sentence must be displayed. eg : if the stored string is "hello how are you"
if the entered string is "how", then the entire sentence "hello how are you" should be displayed.
I am having trouble with getting a user input once they enter it in to a JTextArea and then storing it in to a string value. See, I wanted the user to enter an answer in to the JTextArea, and then once I store it in to a string value, I would be able to use it later. I wanted to after storing the variable to print it on to a JLabel, but nothing is showing up... Heres my code.
static String usera[]= new String [10]; for (int i=0; i< usera.length; i++) { //These are the JTextArea names usera[0]= Question1.getText(); usera[1]= Question2.getText();
[Code].....
I already initialized the JLabels earlier in my code, and I did not feel the need to post all my code here. This is where I am trying to get the string variable and then printing it out.
public class MonthsName { static String monthsName[]; public static void main(String[] args) { String[] months = new String[13]; months[0] = null ;
[Code] .....
I keep getting 1 error that tells me this. Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at MonthsName.main(MonthsName.java:22) Java Result: 1
Just before that netbeans couldn't find the main class. I was wondering if it netbeans or my code that's wrong.
I looked on other examples which have collection of object but I have this extra top level object "AvailableDeliveries" not sure how to handle that level.
I have a table which contains list of regular expression and its corresponding value.I have to fetch those value and put it HASHMAP where regex as key.I have to compare the each key with the given string(input) and If matches I have to get the corresponding Value for the regex.
I am trying to make a program that calculates the change due in dollars and cents. The user inputs both the amount due and the amount tendered. My program only works with whole numbers?
I tried this but it only gives me one letter that corresponds to the number
package pkg2911homework.pkg1; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner keys = new Scanner(System.in);
I wrote a single player blackjack code and i want to play this game with multiplayers, which steps should i take to do this
package blackjack; import java.util.Random; import java.util.Scanner; public class Blackjack { public static void main(String[] args) { Random kagit=new Random ();
Code: public static void main(String[] args) { // TODO code application logic here Calendar time = Calendar.getInstance(); int min = 1;//time.get(Calendar.MINUTE); String blank = "0"; int checker = ((min > 10 ) ? min : blank+min); System.out.println("The time is " + "12" + ":" + checker ); }
This is my code, as you can see, I have if the min is less than 10, display the string "0" next to it so it will be something like
blank is zero and min is one
So it will display as 01 but after min reaches 10 and above, the 0 goes away. Problem I have is, you just cant add "blank" to int checker because checker is an int and blank is a string. So what must I do in order for it to display the 0 under checker?
I have built a binary tree, from a file. In each node, I am storing each word as a string, and an int frequency for each time the word occurs. For the assignment, I need to find how many words occur only once in the file. I wrote the program, but for some reason I am getting a number different from what my professor is expecting.
As far as I know, this file has loaded into the tree correctly, because all of my other answers in the assignment are correct. What am I doing wrong?
public void findUnique() { System.out.println("There are " + findUniqueWords(root, 0) + " unique words."); } private int findUniqueWords(Node subTree, int uniqueCount) { // Base Case: At the end of the branch if(subTree == null){ return uniqueCount;
I've started writing a new program that Scans for some strings. I want to specify a random Integer to those Strings in order to do my desired idea. what should I do?!! my codes are here :
import java.util.Random; import java.util.Scanner; public class Draw { public static void main(String[] args) { System.out.println("This Program is written to solve little problems in families cause of doing unwanted works!!");
[code].....
now I want to Specify an Integer to each person that has been scanned! for example if the first person is " David " , which is a String, in the next step :
Random randomNumber = new Random(); randomNumber.NextInt(101); int David = randomNumber.NextInt(101);
I have to make a programm where the user gives you the bank sorting code and the account number and you give him the IBAN. That was so far no problem and I was done within minutes except of one thing that I simply can't figure out even though im trying since weeks. At some point I have to convert a string to integer. My research told me its with parseInt() and I dont get a syntax error when I compile my programm (using BlueJ). But when executing the programm stops and gives me some weird bug message. Here is code and bug message:
Java Code:
public class IBAN { public IBAN(String Bankleitzahl, String Kontonummer) { Bankleitzahl=Bankleitzahl.replace(" ",""); // Die Leerzeichen werden entfernt int Anzahl=Bankleitzahl.length(); // Auf der Variabel Anzahl wird die Anzahl der Zeichen von der Bankleitzahl gespeichert
but when I put this second line, the conversion, the program stops to work. I tried also with Integer.valueOf(timeInterval) but again I had the same problem.
If I use the class DecimalFormat to format long number, how can I convert it back to integer?
DecimalFormat longFormat = new DecimalFormat("#,###"); long testLong=11000; String strLong=longFormat.format(testLong); System.out.println("NUM : " + strLong); //Assume that at this point I don't have //testLong, I have only the strLong value... long newLong=Long.parseLong(strLong) * 2; //java.lang.NumberFormatException: For input string: "11,000
I'm having an issues with adding integer values to a string list. The question is asking me "the method should iterate over runners, and for each runner generate a random number between 90 and 180 (inclusive) which should be used to set the time (in minutes) for that runner."
I have been able to get the random number and iterating over the runner arraylist but I haven't been able to figure out how to add the values generated into the runners list. I am also using BlueJ.
Here's the whole code I have at the moment:
import java.util.*; import java.io.*; import ou.*; import java.util.Random; /** * Write a description of class MarathonAdmin here. */ public class MarathonAdmin { // instance variables - replace the example below with your own
i am interested to add integer objects and String objects into any collection object ..... while iterating the collection object i am not interested to do any type cast in java