30,998 Topics

Member Avatar for
Member Avatar for ultimate_fusion

heres the start public class work { public static void main (String [] args) { int number = 1; } public static boolean ifstate() { if ( number == 0 ) blah blah } question - how do I get the second method to call on the varible from the …

Member Avatar for ultimate_fusion
0
140
Member Avatar for freesoft_2000

Hi everyone, I am currently trying to print even or odd pages only. I have a frame which contains a jtextpane with some text in it that spans about ten pages and it also contains two buttons. One button if clicked prints out only even pages and the other button …

0
62
Member Avatar for sam1

hi i have been given this cwk for java programming. and i need help getting started. i dont want u to do it all but if u can help to get me started i would really appreciate it thank u. this is the task: A large car dealing company wants …

Member Avatar for sam1
0
104
Member Avatar for rick4324528

i have declared a static global integer, and have assigned it a value. I have then attempted to alter the variable from another method.(Using Classname.Variablename), but it will not work. Nor is it generating a scope error. Any ideas?

Member Avatar for jwenting
0
43
Member Avatar for mmr

Hi All, Can anyone help me out in figuring how we can open an Internet explorer in say "Borderlayout.center" of the frame.

Member Avatar for nanosani
0
40
Member Avatar for freesoft_2000

Hi everyone, I have a jtextpane with some text which spans to about 10 pages and what i want to able to insert page numbers into the center bottom of the page. I am using the DefaultStyledDocument class as the default document type for my jtextpane. I hope someone can …

Member Avatar for freesoft_2000
0
85
Member Avatar for depaolm

Dear all, My names its Max, and seems that I have some problems with JAVA coding. What I need to create its a GUI interface, from the code below. But I am having bad time because I am trying hard but I get always errors! It really frustrating, I do …

0
58
Member Avatar for rick4324528

How can i move between different methods with the same class. When i programmed in VB, it was just the name of the subroutine, but i cant figure it out in java. Please put me out of my misery

Member Avatar for jerbo
0
98
Member Avatar for ancibit

I get this when I try to load my program, yet the compiler says its fine. Please help! Exception in thread "main" java.lang.NoClassDefFoundError: PIStudy$DoPolyINTest at PIStudy.<init>(PIStudy.java:51) at PIStudy.main(PIStudy.java:121) [CODE] import javax.swing.*; import java.util.Random; import java.awt.*; import java.awt.event.*; public class PIStudy { public JFrame window; public JButton name; public JButton comb; …

Member Avatar for ancibit
0
132
Member Avatar for murphyshane

//.... int vals[] = new int [12]; vals[18] = 10; catch (ArrayIndexOutofBoundsException) { //handle error ... }

Member Avatar for jerbo
0
95
Member Avatar for murphyshane

> Q1. How does bytecode differentiate java from other languages such as C or C++? > > > Q2. What is the dfference between the simple type Double and the class Double? > > > Q3. what is the difference between > > > (a) A single character typed in …

Member Avatar for jwenting
0
98
Member Avatar for Ghost

Hi, I'm in URGENT need of anyone who can help me with the following TicTacToe code. When you run it, it lets you click a box. When you click a box, X appears. The, when it's O's player's turn, it will not print an O. [CODE] import javax.swing.*; import java.awt.*; …

Member Avatar for jerbo
0
82
Member Avatar for Chrysanthos

i'm asking from the user to add the length of the array signal and after that if the size of signal is greater than 2 i create a new array smooth which the first value of it is [code] smooth[0]= (signal[0]+signal[1])/2; [/code] the second till the last-1 is [code] for …

Member Avatar for Chrysanthos
0
93
Member Avatar for hayesmark

public class XClass { private int u; private double w; Public XClass () { } Public XClass ( int a, double b) Public void func() { } public void print() { } } XClass x = new XClass (10, 20.75); Q1. How many members does class XClass have? Q2. How …

Member Avatar for MrScruff
0
180
Member Avatar for tigerxx
Member Avatar for mcclth

I am working on a program which creates an arraylist containg all of the cards in a 52 card deck and then randomly selects 20 of them. I would like to have the program display the images of the cards, but I lack knowledge and resoursces to figure out how …

0
59
Member Avatar for nevets56

I've created a program that counts the amt. of characters, words, and lines in a text file...I also need it to count the number of blank lines and the number of vowels in the text document. I don't know why, but I cannot seem to get it to work. If …

Member Avatar for mcclth
0
92
Member Avatar for Jackie001

Hi everyone. At the moment i am doing my thesis for my degree. The title is: "Compare and contrast Oracle client/server technologies with oracle web technologies. Design a business application and depoy it in both. " To compare the applications i am going to use java. I am going to …

Member Avatar for Jackie001
0
211
Member Avatar for freesoft_2000

Hi everyone, I have a textpane with some text inside( i am using the HTMLDocument class as the default document of the textpane) and need to publish the contents of this textpane on certain webpage([url]www.free.com[/url]) What i have also a button together with the textpane on a frame thus when …

0
55
Member Avatar for kendallniall

Public class Prog1 { static final char = BLANK = ` `; static final char ONE 5; public static void main (String[] arg); { a = one + 5; b = a + blank; cc := a + one * 2; ONE = b + c; System.out.println(''a = '' + …

Member Avatar for jwenting
0
161
Member Avatar for shantuli

hello, i just start learning java.please solve my following problem: Q: Write a simple program that allows a user to push up to ten names onto a stack as well as popping them off the stack. [B]my code is:[/B] import DataStructures.*; public class StackDemo { public static void main(String[] args) …

Member Avatar for jwenting
0
160
Member Avatar for agtmulder17

Hi, I am working on a project using Java and embedded SQL in the Java. I have gotten the SQL to successful do what I need it to (In this case, create tables and insert data into them). However, I am having a difficult time with IO. The goal is …

Member Avatar for jerbo
0
105
Member Avatar for matt_5104

I'm having a problem whereby I create an instance of a class called Calculations.class in one of my main classes, but cannot access that instance from any other class. Here is the code public class Parameters{ //code// Calculations calc = new Calculations(); //some calculations done using variables in the calculations …

Member Avatar for jerbo
0
138
Member Avatar for Sideshow Bob

I am working on a project which involves a server/client model running over a network. The server is written in Java, and the client is a C++ addition to an existing product (which is written in VB and C/C++). I chose to write my section in Java simply because I …

Member Avatar for Sideshow Bob
0
166
Member Avatar for jordanmc31

Can anyone give me a basic script that takes a string and converts it into a characters using the nexttoken command to get the next char for searching purposes.

Member Avatar for MrScruff
0
181
Member Avatar for freesoft_2000

Hi everyone, i need to ask a question which is how does one add a hyperlink in a jtextpane. I am using the default htmldocument class as the default document for the jtextpane. What i need is for example a user enters some text in the jtextpane and the user …

0
67
Member Avatar for smalltalk

a ball have radius 20 when i press a button once the radius increase by 5 subsequent clicks have the same effect until a max radius of 30 is reached after this the effect of click is to reduce the radius by 5 until it reach 10. after this a …

Member Avatar for jwenting
0
150
Member Avatar for rick4324528

I have just started using netbeans4.0, and there is no option to mount filesystem, so how can i import and use the elements package?

Member Avatar for jwenting
0
70
Member Avatar for j206

A method i have to write finds and prints "magic squares" which are numbers that are perfect squares and a sum of consecutive numbers (1+2+3,etc.) Ex. the first 2 magic squares are 1 and 1225 it seems simple, but what i have doesn't work and i don't know y or …

Member Avatar for j206
0
72
Member Avatar for server_crash

I keep getting a null pointer exception with this code: It's suppose to load a text file into a textArea. [Code] JFileChooser chooser = new JFileChooser(); int returnVal = chooser.showOpenDialog(this); String getFile = chooser.getName(); if(returnVal == JFileChooser.APPROVE_OPTION) { try { FileReader filegetter = new FileReader(getFile); BufferedReader br = new BufferedReader(filegetter); …

Member Avatar for server_crash
0
142

The End.