Displaying 2 Dim Array
Mar 27, 2015
When i am trying to display the contents of this array its showing arrayindexoutofbounds exception...how do i display this array?
<%
String names[][] = new String[10][2];
for(int i=0;i>=10;i++){
for(int j=0;j<=i;j++){
names[i][j]="anu";
if(j>0){
[Code] .....
View Replies
ADVERTISEMENT
Feb 10, 2015
I have a problem with one method for my assignment. This is the requirement for this method: "This method uses a loop to list all accounts contained in the Array, adding each account details to a String, before outputting to screen in the format specified in the screenshot below. Ensure that there are no out of bounds exceptions by checking if each array slot has an account object before adding its details to the output String. (arrayname[index] != null)"This is my code for this method:
public void listAllAccounts() {
String allAccountsString = "List of all accounts:
";
for(int i = 0; i < ACCOUNT_SPACES; i++) {
//allAccountsString += accountArray[numAccounts];
if (accountArray[i] !=null) {
allAccountsString += accountArray[i].toString() + "
" ;
}
}
JOptionPane.showMessageDialog(null, allAccountsString);
The problem is that the Message Dialog does not display the accounts I have already created. It just displays "List of all accounts:
";
View Replies
View Related
Feb 9, 2014
My project was to create an array holding 10 integers and populate the array with 10 random numbers. Then ask the user to guess the number. Prompt the user with a while loop if their input is out of range. Determine if the users number is in the array, and display which index location the number is in. I got most of the code done but am having trouble displaying the index location.
import javax.swing.*;
public class Homework4 {
public static void main(String[] args) {
int[] numarray = new int [10];
char repeatcode = 'y';
[code]....
View Replies
View Related
Apr 24, 2015
public static void displayOutputs (int[][] anArray) {
System.out.println("Here is your 2Dim array:");
for (int i = 0; i < anArray.length; i++) {
System.out.println(Arrays.deepToString(anArray));
}
}
This is my code and I get this as a result when I input 10,20,30,...,90 into array[0][0], array[0][1], ..., array[2][2] (3rows, 3columns array)
[[10, 20, 30], [40, 50, 60], [70, 80, 90]]
[[10, 20, 30], [40, 50, 60], [70, 80, 90]]
[[10, 20, 30], [40, 50, 60], [70, 80, 90]]
While I expect to get only
[10, 20, 30]
[40, 50, 60]
[70, 80, 90]
I get no errors at least when I have the same # of rows and # of columns. However, when I have more columns than rows, a compiler stops running when it runs columnSum method.Here's an error message.
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2
at lab10.Array2DMethods.columnSum(Arrays2DDemo.java:70)
at lab10.Arrays2DDemo.main(Arrays2DDemo.java:111)
Java Result: 1
And here's my code
public static void columnSum (int[][] anArray) {
int sum =0;
for (int col=0; col < anArray.length; col++) {
sum=0;
for (int r = 0; r < anArray[col].length; r++ ){
sum += anArray[r][col];
}
System.out.println("Sum of column " + col + " = " + sum);
}
}
why my code doesn't work when I have more columns.
View Replies
View Related
Apr 30, 2015
What I'm trying to do is display an entire deck of cards in 4 hands, randomly shuffled. These will be displayed as images in a pane. The images are numbered 1-52(not using Jokers) so what I have done is created an array that contains those numbers. Then I am randomly shuffling that array. What I can't figure out how to do is display the images using the randomly shuffled numbers in the array to do it? Is this even possible or am I totally on the wrong track on how to do this? This seemed like the obvious way to go when I started. Showing images isn't a problem, it's showing them using the array's element to get the image name that I'm having trouble figuring out.
View Replies
View Related
Sep 13, 2014
I'm working a an assignment for my IT/215 class and I'm having a little trouble with my arrays. My code compiles just fine but when it comes to displaying the information I've input into my array it doesn't seem to want to and I'm not sure what I'm doing wrong here. On line 136 originally I had [DVDs [count] = count+1]] but it wouldn't compile. I then put line 136 to [ DVDs[count] = new Inventory();] and I think that's were my issue is but I'm not sure....
// Purpose:the purpose of this software is to display inputs as wells as the stocks and price of inputs.
class Inventory
{
private double ItemNumber; //to store Item number
private String ItemName; //to store Item name
private double UnitsInStock; //to store number of units in stock
private double UnitPrice; //to store Unit price
private double InventoryValue; //to store Inventory value
private double TotalInventory; //to store Total Inventory value
[Code] .....
View Replies
View Related
Oct 21, 2014
I couldn't where the problem with this code. The question is : (Write a program that reads in nine integers and sorts the value in the ascending order. Next, the program restores the sorted integers in a 3 x 3 two-dimensional array and display the integers as shown in the result.) And this how i did it:
package test1;
import java.io.*;
import java.util.*;
public class test1{
public static void main(String[] args){
int[] hold = new int [9];
Scanner sc = new Scanner(System.in);
System.out.print("Enter 9 integers, press <Enter> after each");
{
for (int i = 0; i < hold.length; i++);
[Code] ....
View Replies
View Related
Feb 7, 2015
I have a problem where I have to create random integers from 1 to n + 1. When the array is displayed I have to find the missing integer from the values that are displayed and show that value. I have to use O(n^2) and O(n) operations. I have created this code so far but I cannot figure out how to make my values display n + 1. It is only displaying values 1, 2, 3, 4 and 5 in random order. I also cannot figure out how to find the missing value. I have created a boolean displayed statement but can't determine how to use it in this code.
=Java
import java.util.Random;
public class Task6
{
public static void main(String[] args)
{
int[] numbers = new int[7]; //create array of numbers
Random random = new Random();
boolean displayed = false; //boolean value to determine if number was displayed
[code]....
View Replies
View Related
Apr 5, 2014
I have written some error checking code
File name ErrorPage.jsp
<%@ page language="java" isErrorPage="true" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Error</title>
</head>
[code]...
I have put error.jsp and badpage.jsp file in public access folder that is web content in eclipsewhen I am running the code I am status code of 500 and not the errorpage.jsp message .
View Replies
View Related
Apr 5, 2015
I was wondering if its possible to show a video (mp4) inside a jframe? like the windows media player ....
View Replies
View Related
Jan 18, 2014
I am working on a program to have a user input two positive integers and then finding the greatest common denominator between the two. My problem is, I don't know how to display the number (num2) that is returned after the method. Putting a simple System.out.println gives me the error "unreachable code".
import java.util.Scanner;
public class ****
{
public static void main(String[] args)
[code]....
View Replies
View Related
Jun 19, 2014
My program task is if we give a character... the display will print CHARACTER AS CHARACTER Shape
IF WE GIVE LETTER L... IT WILL PRINT LIKE THIS...
L
L
L
L L L L
View Replies
View Related
Sep 20, 2014
I created a instance of a class AddItemView, inside StartUpMenuController. I then passed it into the class, the main method is below showing that as well. However when I do this:
else if(e.getSource()==menu.addBtn)
{
new addItem();
}
I get an error, little red line on the bottom of the text. I am testing the frame at the moment to make sure it is what I want before I move on to the Controller side of it. I just want to display it and go from there.
package mainMenu.Home.DataBase;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import addItemBtn.Home.DataBase.AddItemView;
public class StartUpMenuController
{
StartUpMenu menu;
AddItemView addItem;
[code]...
Not sure if this is the issue but the class I am making a new instance of is in a different package. I imported the package though.
View Replies
View Related
Aug 21, 2014
I am trying to display the files stored in server using jsp. I used the code below to display. But for pdf it is asking to download (No option for open). For XLS, XLSX, DOCX, PPT and PPTX it is showing zip file to download. For type doc it is showing junk data.
<%
String fileName=(String)request.getAttribute("fileName");
int loc = fileName.lastIndexOf(".");
String fileName1 = fileName.substring(0, loc);
String fileName2 = fileName.substring(loc + 1, fileName.length());
[Code] ...
View Replies
View Related
Sep 14, 2014
One of my official site is not disaplying the content in machine#1 IE10 browser.And the same site is showing data in another machine#2. I compared the both machines JRE and JDK settings but no difference found.
how to link the JRE to browser.
View Replies
View Related
Apr 14, 2014
why my image may not be showing. Note I am using eclipse.
Window.java:
import javax.swing.*;
public class Window {
private JFrame gameWindow;
public Window() {
gameWindow = new JFrame("Tamagotchi!");
[code]....
I have used file.exists() and this returns true, and file.length() which returns the correct file size.
System.out.println(backgroundImage) returns "splash.png" so thats ok.
Why then is my image not showing?
View Replies
View Related
Oct 13, 2014
so far this is what i have written. The program works correctly but I need to be able to have the numbers i am entering to show up on the .txt file.
import java.util.Scanner;
import java.io.*;
public class LargestAndSmallest {
public static void main(String[] args) throws IOException {
Scanner input = new Scanner(System.in);
[code].....
View Replies
View Related
Jul 11, 2014
I'm learning about inheritance and part of my problem is to create an Order with methods, then an UpdateOrder where the total price is changed by adding four dollars to it, and then a main method displaying a few orders. I've copied all three below in order. My question is when I run the program it will display the totalprice() first for the second order followed by name, number, etc.what you override always displayed first regardless of the order you put them in? (The issue is at line 31 on the third code.)
import javax.swing.JOptionPane;
public class Order { //superclass
private String customerName;
private int customerNumber;
protected int quantityOrdered;
protected double unitPrice;
protected double totalPrice;
[code]....
View Replies
View Related
Feb 28, 2015
I need to display my calculations in a table format using loops.
//Imports
import java.util.*;
import java.text.*;
public class YourLoanCalculator {
[code]....
The increments are correct, but I wanted them listed under the "Payment #:" column. I figure that if I do that, I can also correctly display the interest, principal, unpaid balance and total interest paid at that point, right?
View Replies
View Related
Jan 28, 2014
Aatrox
Champions@3622e177
Champions@4805e9f1
Champions@57e40274
Champions@354124d6
Champions@262f4813
Champions@64f01d52
Frozen Heart
Randuin's Omen
As you can see instead of displaying the champion name it is displaying the memory location and I do not know how to fix it.
class Champions
{
String name;
Champions [] weak = new Champions [3];
Champions [] strong = new Champions [3];
String [] items = new String [3];
public static void main (String [] args)
{
[Code]...
View Replies
View Related
Jan 20, 2014
Here is my code
Java Code: //Points Display
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.awt.Graphics;
import java.awt.Color;
import java.awt.Dimension;
import java.util.Random;
[code]...
1. Why, when I press "New" rapidly, will it skip painting shapes sometimes/adding to totcount.
2. How can I make it so that The box in the background(which is currently connected in the wrong way as I was getting an error when I connected it correctly) can be modifiably large. AKA, I want to draw a grid in the background that can be different sizes, depending on the values of a variable xsize and ysize.
3. What can I do to clean this up? All I want it to do is display the convex hull of the four points given in the int[][] displaypoints.
View Replies
View Related
Jul 2, 2014
Yes my JPanel is not displaying all the time like you would think it would. Before you beat me up yes I am a bit new I am just working on the GUI part of java over my summer break. Obviously it is not suppose to do that. Secondly, As you can see i am using the alphabet to create JButtons. Shouldnt there be an easier way to use a for( loop) . I tried before but I didn't want to get too side tracked.
Java Code:
import javax.swing.*;
import java.awt.*;
public class hello {
private JFrame alphaframe1;
private JFrame alphaframe2;
[Code] .....
View Replies
View Related
Mar 12, 2014
I have a JScrollPane and JTable inside. In the right column of the table at the end (south) I made a ChartPanel in one of the classes where I make the design for the Frame:
Java Code:
ChartPanel chartpanel = new ChartPanel(pieChart);
pCapturing.add(chartpanel, BorderLayout.NORTH); mh_sh_highlight_all('java');
And when I click on any row above, from the list in the column, I would like an appropriate pie chart to be drawn.
I need here (in another class where I define the getTableCellRendererComponent) to enter a code to display the chart in the last row of the panel:
Java Code:
PieChart3 pie=sectionsChartProvider.getSectionPieChart(section);
...
...
if((hasFocus) || (isSelected)) {
if(column == 0)
setBorder( new MatteBorder(1, 1, 1, 0, colorBorder) );
[Code] .....
But, I don't know how to do this. I also have a class for drawing the pie chart.
View Replies
View Related
Oct 15, 2014
So I have this
function checkvalue (val) {
if(val==='replaced')
document.getElementById('check1h').style.display='block';
else if (val==='checked')
document.getElementById('check1h').style.display='none';
else
document.getElementById('check1h').style.display='none';
}
Which works fine... But if I try and add another document under the if VAL === replaced then nothing works and neither of the boxes appear.
function checkvalue (val) {
if(val==='replaced')
document.getElementById('check1h').style.display='block';
document.getElementById('check1n').style.display='block';
else if (val==='checked')
document.getElementById('check1h').style.display='none';
else
document.getElementById('check1h').style.display='none';
}
Is this not possible?
Also, Both of my input type are set up like this...
<input type='text' style='display:none' name='check1n' id='check1n' placeholder='Name of Part' />
<br>
<input type='text' style='display:none' name ='check1h' id='check1h' placeholder='Part Number' />
View Replies
View Related
Jan 6, 2015
i have got an array which has come from a text file.
Parts of the array have been placed into a string.
So string one will have about 50 different values which I am able to print into the console using System.out.println("FirstString"); This prints all of the variables from the array so I end up with 50 words.
I am now trying to get this into a HTML document.
I have correctly done this and I get some out put when the webpage opens.
My problem is that I only have 1 work which is displayed.
View Replies
View Related
Nov 16, 2014
My code:
import javax.imageio.ImageIO;
import javax.swing.*;
import java.io.*;
import java.awt.*;
import java.lang.*;
import java.awt.image.*;
import java.net.URLDecoder;
[Code] .....
I my images (including the one I created) are all 32x32. I'm trying to get a player Icon and have them be on a field of grass. Currently, I just get:
(see Attached)
I don't know where my Images are rendering.
B = blank
. = grass
p = player
.
.
.
.
. p
.
.
b
View Replies
View Related