Monday, June 30, 2008

When i click on any song on youtube they say that i have either swithched off my java script or have an old version of adobe flash player. pls how can i put it right?

while (***)
{
System.in.nextString(....);
}

pls fill in the ***
i want *** to be not equals new line.

1st correct answer gets best answer

I have just completed my grade 10 with IGCSE .. I have planned to do C++ NIIT course in these holidays .. what are the advantages of doing C++ and what are job opportunities... Otherwise there are two more courses like gaming technology - java - multimedia courses - corel draw courses .. Which do u think is worth doing ...

Thanks a lot

Shows it s seeding and downloading but it s not.I can t fine a good port in vuze options that works

Sunday, June 29, 2008

ok..so im using internet explorer andi watched vids 4 like 2 yrs. now..and i was a bit suprised when i used the computer just now to watch another vid there was this letter that said i had my java script turned off or i shoul dowload the new adobe flash player... i even went to tools-internet options-and is till saw a check!! but beside it said"requires restart" how do i restart it?????heeellllp!!!thx

Write the Java codes to print the following statements (using for loops):

Line 50
Line 52
Line 54
...
Line 100

The answers:

for (int i = 50; i <=100; i = i + 2)
System.out.println ("line" + i);

-------
I have a question to ask: why is there a " " for the line? Can I just write (line + i)? Any difference would it make? Thanks

import java.util.Scanner;
public class Numbers {
public static void main (String [ ] args)
{
int num;
int x = 2- y = 4;
Scanner sc = new Scanner (System.in);

System.out.print ("Enter number: ");
num = sc.nextInt ();
System.out.println ("num = " + --num);
System.out.println ("num = " + num);
num = x++ + y--;
System.out.println ("num = " + num);
System.out.println ("x = " + x);
}
}

My answers:

Enter number: 10
num = 9
num = 6
x = 3

What and where went wrong? I only got 2 marks out of a total of 4 marks...Please help me...(Explain too. Hahas)

Thanks.

I need java 5.0 for higher so i can use limewire. I went to a website so i can download it. And it starts out fine. But once its hits installing java progress. It will just stop downloading. And keep trying to re-start it but it just keep doing the same thing. Is there anywhere else i can go to get java or somthing else i can do? Plz help

Help me please!!!?
OK- youtube still will not let me watch videos...I have installed adobe reader 8 and adobe media player.. And I have deleted all my cookies and went in to the tools options for my internet browser to enable java script..so guess what? Im still getting the message: either you have java script turned off or you have an older version of adobe flash player and guess what? My java script is enabled and I have a newer version of adobe and it s still not letting me watch any youtube vidoes..what the heck do i do now????someone help me please!!!!!!!!!!

Conexant HDA D110 MDC V.92 Modem
High Definition Audio Driver Package - KB835221
J2SE Runtime Enviroment 5.0 Update 6
Java(TM) 6 Update 3
Java(TM) 6 Update 5
Macromedia Extension Manager
Microsoft .NET Framework 1.1
Microsoft .NET Framework 1.1 Hotfix (KB928366)
Microsoft .NET Framework 2.0 Service Pack 1
Microsoft Compression Client Pack 1.0 for Windows XP
Microsoft Internationalized Domain Names Mitigation APIs
Microsoft National Language Support Downlevel APIs
Microsoft SQL Server Native Client
Microsoft User-Mode Driver Framework Feature Pack 2.0
Mouse Suite
Network Play System
Synaptics Pointing Device Driver

I go to Runescape.com- I press Existing User- I scroll down and change the Signed/Unsigned Java thing (I have tried each one)- I choose a world- and it is just a grey screen! What s happening and how do I fix this?

I downloaded Sun Java Console and everytime I try to get a new tab- the window closes and I have to get on the internet again!
PLEASE!!!!! HELP ME OUT!

i ve deleted and reloaded both java and mp3rocket several but can t get past the firewall screen and i ve shut off all my protection.

i m trying to get the source code of arcanists15 at funorb.com just to have a look maybe edit a bit and well ill just say its HARD ive got to a pack200 file but when i try to extract it the darn pack200 runs up the error


corrupted pack file: magic/ver =08000000/0.0 should be CAFEDOOD/150.7 or CAFEDOOD/150.6

some 1 plz help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

i m trying to get the source code of arcanists15 at funorb.com just to have a look maybe edit a bit and well ill just say its HARD ive got to a pack200 file but when i try to extract it the darn pack200 runs up the error


corrupted pack file: magic/ver =08000000/0.0 should be CAFEDOOD/150.7 or CAFEDOOD/150.6

some 1 plz help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Ok. Can someone explain to me what Java is used for- and how i can learn it? Thanks.

If the title

I got this moss at petco but the petco guy didn t what it was.

http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss002-1.jpg

This moss is the clump infront of the driftwood and i m not sure if the moss on the driftwood is java moss:
http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss006-1.jpg

This is Java moss I think. It doesn t look like any of the pictures on google though. I heard it is fast growing- but mine grows kinda slow

http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss005-1.jpg

I wrote a program do not know where is wrong
Has been wrong- there is a problem in class
“class Dessert is public- should be declared in a file named Dessert
.java”
What is the problem with this
class OOP {
public static void main(String args[]) {
Dish dish1=new Dish();
dish1.setName("steak");
dish1.setPrice(490);
dish1.setTime("dinner");

Cake cake=new Cake();
cake.setFlavor("chocolate");
cake.setAmount(2);
cake.setDessertSpecies("CAKE");

System.out.println("Time of dish1 ==>"+dish1.getTime());
System.out.println("Name of dish1 ==>"+dish1.getName());
System.out.println("Price of dish1 ==>"+dish1.getPrice());
dish1.dessert(cake);
}
}
public class Entree{
public Entree() { }

String name="";
int price=0;

public void setName(String str) {
name=str;
}
public void setPrice(int price1) {
price=price1;
}
public String getName() {
return name;
}
public int getPrice() {
return price;
}
public void dessert(Dessert dessert) {
System.out.println("Dessert : "+dessert.getDessertSpecies());
}
}


public class Dish extends Entree{
public Dish(){}

String time="";
public void setTime(String time){
time=time;
}
public String getTime() {
return time;
}
}


public class Dessert {
int amount=0;
String flavor="";
String dessertSpecies="";
public Dessert() { }

public void setAmount(int amount1) {
amount= amount;
}
public int getAmount() {
return amount;
}
public void setFlavor(String str) {
flavor=flavor;
}
public String getFlavor() {
return flavor;
}
public void setDessertSpecies(String str) {
dessertSpecies=str;
}
public String getDessertSpecies() {
return dessertSpecies;
}
}

public class Cake extends Dessert {
public Cake (){}
}

does card counting really work? I have tried it on a free online black jack game and i seem to win more then i used to when i did not use card counting but lets say you played online for real money is there any chance of making a little bit of money from card counting at blackjack?.
The method i have been using is the low cards count at +1 and the higher cards -1 you start off at 0 and then place your bet accordingly. So lets say you had a score of +5 you would bet a higher amount.
Its seems to work on the free black jack and the blackjack on my k750 java game. Before i tried the above i used to loose allot at blackjack games.

What Application do I install so I can run a java application on a windows 95 PC?

Also a URL would be nice?

cheers

I uploaded the pictures on Flickr. I m just worried because the roots are exposed. Will the roots eventually grab on to the driftwood and in how many days? Note that some parts of the root were wedged into a gap in the driftwood. Also the java ferns were just wedged into the holes of the wood.

Any other plants I could add? Will I need an extra CO2 source- fertilizer or even more lights? All the equipment came from aqueon s delux 10g set.

Lastly hows my overall tank looking so far?
http://www.flickr.com/photos/8531142@N03/?saved=1

hello- i got this problem where i can t load silab client i go to the site silabsoft.org but it loads with java and then after java is finished loading it shows blank white screen the game don t even load i read on one thing it said it may not be allowing files but how can i fix it?

// The program is as under

package MyPack;

class Balance
{
String name;
double bal;
Balance(String n- double b)
{name = n;
bal = b;}
void show()
{
if(bal<0)
System.out.print("â€"> ");
System.out.println(name + ": $" + bal);
}
}
class AccountBalance
{
public static void main(String args[])
{
Balance current[] = new Balance[3];
current[0] = new Balance("K. J. Fielding"- 123.23);
current[1] = new Balance("Will Tell"- 157.02);
current[2] = new Balance("Tom Jackson"- -12.33);
for(int i=0; i<3; i++) current[i].show();
}

}

regarding some topics which is in te books-sme more informatio about it

{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}
{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}

I cannot past the whole program pls can any one contact me on my email ID braindamage1234 via chat

Saturday, June 28, 2008

{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}
{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}

I cannot past the whole program pls can any one contact me on my email ID braindamage1234 via chat

I would like to experiment with forex- however due to my current location on this rock- I can only use web based- non-java applications. This is due to firewall limitations and can not be overcome. Is such a web-based system available?
The firewall is not my own or PC based. It is a centralized- proprietary- limited permission system. It has to do with residing in a rather restrictive environment. I am not able to bypass it in any way - all traffic must route through it and must be authenticated.
The firewall is not my own or PC based. It is a centralized- proprietary- limited permission system. It has to do with residing in a rather restrictive environment. I am not able to bypass it in any way - all traffic must route through it and must be authenticated.

I have a JS function attached to a mouseover event of an anchor element and some CSS...

a#imgPop:hover span { ... top: -2em;... }

Is it possible to change the *hover span* psuedo selector top value from -2 to say -10 via JS via the following type of line...

element.style.border = "0px";

or is this one such reason why the hover style is called a psuedo selector!

thanks in advance

java programs.

Who the heck is this Joe person?????
;-}

I know you want to star this for me! *

when i try to install it- this thing pops up and says error applying transforms. Verify that the specified transform paths are valid.Also sometimes it says something about the internet connection.

I have windows xp home edition.
sometimes it says it cannot proceed because of the internet connection settings?

Surely...they are all birds and should get on with each other...
I like the twist David w...have a star!
seems like multi-culture living doesnt work for the bird family either!...

does anyone no of java enabled proxys?

Do y all know where the part of the Homepage says "My Mail" and inside the box is a list of options:

Friend Request Approved!
New Event Invitation!
New Blog Posts!
New Birthdays!
New Photo Comments!
New Categories!
ETC?

Well- why does "New Photo Comments" keep showing up when after I click on it- there ARE NO COMMENTS. It s a blank page? Could it be a problem with the PC having no Java or Adobe downloaded? I don t get it.

I have been banned by mistake from a website (www.howrse.com) I need to get back on to contact the admin.
I have tried to use a IP Proxy and other proxys but I keep getting a message on the Howrse site that i need to enable Java Script. How do I fix this as my Java is switched on
does anyone know of any java enabled proxys

I wrote this code in notepad and now I need to turn it into a Java.file. I have tried to save it as payrollcalculator.java in notepad and that doesn t work. Any help on this would be greatly appreciated. I have Java JDK downloaded I just don t know how to put this in there properly to make it run. Please Help!

/* --Payrollprogram
* myname
* 06/20/08
* payroll/calculation

System.out.print("Enter employee name: ");

employee = Input.readString();
while (employee.equals(""))
{
System.out.print("Enter proper employee name: ");
employee = Input.readString();
continue;
}

// hours worked
while (!hours_valid)
{
System.out.print("How many hours did " + employee + " work? ");
hours = Input.readDouble();
while (hours < 0)
{
System.out.print("Enter proper number of hours: ");
hours = Input.readDouble();
continue;
}
hours_valid = true;

}

// rate
while (!rate_valid)
{
System.out.print("How much does " + employee + " make per hour? ");
rate = Input.readDouble();
while (rate < 0)
{
System.out.print("Enter proper number for rate: ");
rate = Input.readDouble();
continue;
}
rate_valid = true;

}

// compute pay check
double pay = rate * hours;
NumberFormat fmt = NumberFormat.getCurrencyInstance();
System.out.println("\n" + employee + " worked for " + hours
+ " hours at " + fmt.format(rate) + "/hr; paycheck = "
+ fmt.format(pay));
}

}

its a window based mobile and with t mobile

why java does not support multiple inheritance?????????????????

Hello - am planning to buy a good nokia phone - N-Series would be cool - just wanted to know what are the good phones out there in the market - and JAVA apps is a must - please suggest me good phones.

Hello- I just started getting version conflict when trying to play yahoo chess game. I ve tried cleaning cache and re-installing flash and java to no avail. I would appreciate it if someone could tell me how to fix this problem.

how do i install java leagally and safe?

I have it in my mind to become a programmer of apps- web site and/or games! I THINK the bast way so far is to study C++- then Java- the XML and Flash. Does this seem like a logical path? is there a BETTER (and preferably QUICKER) path to get to my goal?
- p.s. I am considering going back to school for this stuff- so i want to make a good effort of learning to see if im cut out for it.

I am currently residing in West Jakarta- Indonesia and is planning to move to Solo- Central Java.

I want to sell out most of my things like: used clothes- furnitures- home appliances- kitchen utensils- kids toys- etc.

I don t have much time to spend to have a garage sale so I prefer to sell everything out one time to one person/entity.

Anybody knows to whom I can sell these things out?

The old clothes- I want to donate to orphanage (my kids stuff) and to home for the aged (adults clothes). Any orphanage or home for the aged nearby?

Serious reply only- please...

When I try to login into a trusted site it returns in something like" your browser does not java enabled" and also I am being guided to go through Tools-Internet options-Security-customs
But I couldn t find anything there and the java script option already kept enabled.

Please help me get rid of this problem

Why doesn t this program compile?

import javax.swing.JOptionPane;
import java.util.*;
public class Pair1
{
public static void main ( String [] arg)
{
String input = JOptionPane.showInputDialog("What is your name?");
if (input.equals(null))
{
input = "";
JOptionPane.showMessageDialog(null-"Hello "+ input +" !");
}
else
{
JOptionPane.showMessageDialog("Hello" + input);
}
System.exit(0);
}
}

i hav 1Q...
how to create game with graphic by using java lnguag...
anybod cn tell me what softwre should i use plez..

Friday, June 27, 2008

I tried deleting and redownload the newest version and it still doesn t work. I also tried restoring the original settings on the tool bar.
simple flash programs work like games but it will not show youtube videos so I think it is java related.
It has been so for about a week.
Also I have xp.

we were given a computer that has windows 2000 professional as the operating system.

i ve been trying to install java- but every time i try it comes up with this:
---
this java platform will not work on this system for the following reasons:

* this machine does not have enough disk space to install this product
---
i ve checked the c and d drives- and they both say this:
C: used 566kb
free 7.23 mb

D: used 3.19 gb
free 73.1 gb

so from what i can see- i have plenty of room to install java [373kb]. but it s not letting me..


[also- as a side question- the person who gave us the computer told us that we had to insert the installation disk at every startup. if that s true- could i possibly install windows xp professional instead- and maybe not have to insert it at every startup?]
i went through some other yahoo answers and it said that i should go into regedit- which i did and i found where the installation stuff is sent..

it actually is sent to d drive- which was something else that confused me.. [sorry i didn t specify]

The tools offered from every website screener I have seen are not in-depth enough for what I m looking for. The Yahoo Screener from JAVA only would have been- but I m having problems with it that yahoo customer support has not been able to solve. I have also tried downloading the hingefire screener- unsuccessfully. It must be a good- in-depth screener. I don t mind paying a small charge- however. Thanks for your help!

I would like them to be compatible with a Samsung a737 phone. I m not sure whether or not this is a Smart Phone - so the provided instructions aren t much help. I figure I probably need to get it down to one file- or a folder that is called by a file- but I have no idea how to do that.

I read the warning stuff on the website- but #5 is interesting.

It says- "[...]it opens new risks: malicious or misconfigured Tor exit nodes can send you the wrong page- or even send you embedded Java applets disguised as domains you trust."

Have you ever experienced any problems? Will Tor mess my computer up? Will it work for Ventrilo?

Please help.

How do I create a new String that has a name depending on what the user inputs...

For example...if the user types "hello" in a dialogue box- a new String called "hello" will be created...

Thanks

how do i unblock websites at my house. like take runescape for example. I HAVE TRYED INTERNET OPTIONS AND WEB PROXYS. THE WEB PROXYS DON T WORK BECAUSE FOR SOMe reason the java for runescape won t work. but java works on flash games and stuff like that

transforme a tab[ ][ ] to an image

I use IE-7; Windows XP. When I visit some websites- old & not-updated default pages appear. I ve run CCleaner- and I ve used Tools>Internet Options> to clear temp & cookies. This began after I downloaded Java 6.

Any ideas?

Thank you.
Thank you....to the first 3 people who answered. You knew more about this than the tech people at the host company. I ve been working on this for 3 days- and I knew there had to be a way that not everything was being cleared. I am sooooo happy!!

Does anyone s new firefox work slower when opening more than 2 tabs I have the newest Java so that isnt the problem.

I don t use phones much but I want a phone that I can use in the USA and Europe.

I need to run a Java program (a midlet).
I don t plan to get a contract. I will buy prepaid minutes.

I am a little nervous about this- but my dad put me up to a bet- if I can finish all my semester s homework by midnight Saturday he ll buy me a Wii. So what do you think. Is VB easy? Is this a thing I can accomplish? This is assuming I work from now for two days straight.

it s just a blank spot where the video is supposed to be and it s been like this for a couple of weeks now-it happened out of nowhere and i don t know why. I ve looked on google and stuff and even tried to reinstall java and active x but nothing is helping. Also on certain websites such as facebook or myspace i can t click on certain buttons like to log in or send messages. Please someone help me- this is getting so annoying!

how can i turn it on i have enables active sharing but when i go the page to dowload i cant download it a download option doesint come up iv been tryin to work it

it wont let me listen to music such as imeem. this all occured when irestarted my computer about half an hour ago. i dont no wher to go to get it back .

hey

when I was using ie6- i used to be able to use microsoft java- without having sun java installed..

how can i use microsoft java on ie7 without having sun java installed? do i have do download anything?

Thankyou

I have Java installed however- every website that requires Java says that I have not installed it... Well I have Un-Installed it and then Re-Installed it again but that does not seem to work... Does anyone know how to get Java to work? And why is it saying that I do not have Java installed when I do?

(:
Thanks for fucking helping me you bastards go fucking die... >:(

can someone make me a simple java code using netbeans that can ask for a username-password- and show an image. Please! thanks!

I mean WTF youtube videos only work for FireFox on my computer? If I try to go to youtube on IE- I get the messege "Get the lasest flash...enable javascript blah blah blah..." I HAVE THEM BOTH. What the hell is wrong with IE? And NOTHING that requires Java or flash works on IE. Only FF...Help?

I had them for a while. They are very small- sprial cone. I think they keep eating all my plants. I have java moss- Japanese moss balls- giant moss- phoenix moss-fissdens fontanus- and 2 banana plants. evertime I see one I take it out of the tank immediately. I use to find about 30 but I kept taking them out. Now I see about 7 each time. I don t like taking out the snails all the tim e because they stress out my fish. Any suggestions?

Here is a new Java forum that is for Java students and professional Java programmers. Do you think that it is a good place to ask Java questions since the code can be formatted?
http://www.kaydell.com/forums/list.php?89
Here s an example of a question with code that is formatted to be readable:

http://www.kaydell.com/forums/read.php?89-18

Thursday, June 26, 2008

I sent them my resume and got called for an interview. During the interview- they gave an hour long exam on Java- which I thought I did OK. Then a few weeks later- they told my to fill out an employment application- send them my transcript- and fill out the authorization for a background check. My transcript isn t so good- but I never lied about my GPA. After a week- I asked when they would complete the background check. They said in two weeks. It s been over two weeks now- should I call them again?

I ve cleared my cookies and cache- etc. Firefox is unable to login to yahoo mail - a login password error is received. When using Internet Explorer- the error does not appear and I am able to log in as desired.

The login I use is at: https://login.yahoo.com/config/login_verify2?.intl=us&.src=ym&.done=http%3a%2f%2fus.mc522.mail.yahoo.com%2fmc%2fwelcome%3f.rand%3df6bnm3jkocjsl

I m able to login at other areas of the site- but I m not able to access my email without going through the above screen.

Any help is appreciated.

This problem was going on with my last version (2.0.4 i believe) as well as my updated version (3.0).
Extensions installed:

AVG Safe Search (Not compatible with Firefox 3.0- so disabled)
Plugins installed:

[-]

* Default Plug-in
* Adobe PDF Plug-In For Firefox and Netscape
* Java Plug-in 1.6.0_05 for Netscape Navigator (DLL Helper)
* Npdsplay dll
* DRM Netscape Network Object
* DRM Store Netscape Plugin

Whenever I try to download Java- the installer stops in between and says "expect pauses as cabinet files are downloaded" and the installation stops. Please tell me what to do? Am I following the correct procedure? I have windows XP fulfilling all requirements and the version of java is java SE development kit 1.5
I waited for half an hour but still the progress bar didn t move an inch

LinkedList<Integer> TheColors = new LinkedList<Integer>();

public Integer makeColor()
{ int c = ((int)((Math.random() *4) + 1));
color = new Integer(c);
return color;}

public void add()
{TheColors.add(makeColor());}

it gives me the following error:

NullPointerException:
at Pattern.add(Pattern.java:28)
at SimonSaysTest.main(SimonSaysTest.java:32)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)

Ok- I am reinstalling XP Pro although for this question I do not think it matters. What I need to know is what would you recommend as necessary software installation on a fresh install? Anti-Virus Program- Java- Acrobat and etcetera.
All that respond- I really do appreciate your help and time.
Thank you!

it says windows installers says error applying transforms verify that the specified transform path are valid and my youtube wont work it says install flash player i did that already and now i cant even use my limew wire no mnore plzzzzzzzzz helpppp and fast i even deleted the java form the files iv tryed everything still dont work

it saids this evrytime i try to watch a video and i have installed adobe flassplayer the lastest veriosn and java how do i turn on java please help and thanks p.s is there another website that is just ike youtube

hi people of yahoo-and runescape fanatics. i have been having trouble logging into runescape i get past the world select and after that when its loading it turns white with a little x in the corner i right click on it and it asks open java console and thats in in the right click menu. it works in safe mode but not in normal plzzz help
and does anyone have a link i can download activex from

so i went to runescape.com and went to a world and when it opened a pop-up came up and it said this:several java virtual machines running in the same process caused an error.

What the heck?
Can someone tell how to fix this.

youtuve has always worked for me- and last night all of a sudden it said my either my flash had to be updated or my java wasn t turned on. i got the updated flash version- and made sure my java was turned on and restarted my computer. nothing s been working! i tried going on tools and changing the settings on ActX and did exactly what it said to do online whenever asked this same question. please help!!
using internet explorer
actually i just got mozilla after the first person s answer and nothing was different. i m getting really frustrated- because youtube was one of my most visited sites

Plz also the minimum cut off to qualify the exam.
Also give som tips for the preparation of exam.

Hey So I Think My betta Has Ick...Hes In A 5 Gallon Thats Heated And Filtered. I Will Move Him To A Hospital Tank. Once I Move Him the Tnak Will BE Empty And The Only Living Things In There Are Live Plants And The Ick Parasites. I Will Raise The Temp To 85 To 90F And Leave It At That Temp For 10 Days. Ive Read That This Also Kills The Parasites. Now My Question Is Will My Live Plants Die At This Temp? I Think There Java Ferns.

i know you probably think it s just disabled- but it s not i already went in checked &fixed that. it s really just broken the layouts don t come up right and it s just text.. i can t even log in and the screen says the problem is javascript....
ideas/solutions are definately welcomed!! please &thanks :)

Hello-

I have been reviewing C++ and grasping a lot of the information that it takes to create a C++ program. I have taken JAVA so I see a lot of the information is "similar" to java. But- I have reached a point in learning where I have read about pointers. I understand their purpose is to "point" to a specific location in memory. But- I don t quite understand their actual "purpose". Can someone please tell me?
int *a = &b; This declaration would mean that the pointer a has the address of b. In other words a points to b.


So does this mean that A would have the address of "memory" of where the value of b is located?

what are good chatrooms that are easy to get into without all that java digichat crap i want one where you click and then your automatically talking.... please ill give best answer :)

Mcafee wont even load all I get is the Square Border.
I ve reinstalled Java and my Adobe Flash Player and the Youtube Videos/Online Games still arn t loading.
I have a Windows Vista.
(This started happening after a Mcafee Update and thats why I think Mcafee might be the Problem)
Im not Switching from Mcafee to Norton because Norton is too Complicated
(I ve tried it before) Im also not switching to anything else.

pls help me!
can u pls type it...

IOU!

I try to delete Java(TM) 6 Update 6 in my computer but all I get is this: Internal Error 2753. RegUtils... Fatal error during installation. It takes up a lot of space: 3800mb. BUt everytime I go in the Local Disk in My Computer and try to find the java folder- it isn t there. I don t know if the program is still in my computer or not. What should I do?

The question basically is...is my thought process correct?

It s been a year since I ve done any java programming and I m amazed at how slow it is to come back. If anyone can help me verify the following that would be great.

Let s say you have a java class with 4 arguments. Each argument cooresponds to a private field within the class which acts as storage when the class is instantiated as an object. When you first instantiate the object- you will provide 4 arguments in the constuctor. The class has several methods. (Coming up is the part I m not sure about.)
When I need to do calculation on the inputs received- which are currently stored in the private fields- should I create new private fields to store the new values- change the contents of the original private fields- or keep all calculations and their resulting outputs within getter methods and never store them in private class variables. Man this was so clear a year ago. If anyone can walk me through this- I d appreciate it

Everytime I try to remove Java(TM) 6 Update 6 from my computer- all I get is a box saying "Internal Error 2753. RegUtils". I really need help since this program takes up a lot of space: 3962mb and I can t remove it. Please.

Wednesday, June 25, 2008

I wanna embed a Java Game that I found on another site onto mine. I did

<embed height="515" width="615" src="http://andyslife.org /games/sand.php">

But it didnt work. (I did the space up there so you can see all the text)
... any help?
walid/ : I did what you told me- but it isn t working for me.

http://lolblog.page.tl/Hell-of-Sand.htm

So- whats wrong?

What are the parameters in each method???


a. drawLine()
b. fillRect()
c. drawRect()
d. clearRect()
e. drawPolyline()
f. drawPolygon()
g. fillPolygon()
h. getColor()
i. setColor()
j. getFont()
k. setFont()
l. drawString()

What is the definition of each method???

a. drawLine()
b. fillRect()
c. drawRect()
d. clearRect()
e. drawPolyline()
f. drawPolygon()
g. fillPolygon()
h. getColor()
i. setColor()
j. getFont()
k. setFont()
l. drawString()

LimeWire version 4.16.7
Java version 1.5.0_06 from Sun Microsystems Inc.
Windows XP v. 5.1 on x86
Free/total memory: 32486504/33357824

com.limegroup.gnutella.gui.GUILoader$StartupFailedException: file [LimeWire.jar] has hash of [A00EAB0AE1132B710BC84BE0CFDE56AF] instead of expected [F825DA5E2A46A177A3F00D239FC6441A]
at com.limegroup.gnutella.gui.GUILoader.verifyHashes(GUILoader.java:318)
at com.limegroup.gnutella.gui.GUILoader.sanityCheck(GUILoader.java:284)
at com.limegroup.gnutella.gui.GUILoader.load(GUILoader.java:57)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.limegroup.gnutella.gui.Main.main(Main.java:44)

STARTUP ERROR!
Go clean?...U some kind of anti-downloading activist? lol

I downloaded java to my moto Q and copied downloaded games from my PC to my moto Q. Now when I try to install my games through my moto Q I always get put into the MIDlet window and I can t figure out how to install my games onto my phone through the MIDlet window. What do I do? Please help me. I m new at having this moto Q.

On my old computer I had Limewire and looooved it- but my new computer (with Windows XP Home Edition) won t let me do anything Java-related. It s a Dell btw. I have BearShare- but honestly- I m reallllly not a fan. Are there any GOOD filesharing networks that I can work with that DON T require Java? I ve already tried Phex and Frostwire...they both need it.

i was thinking about downloading limewire to get free music instead of having my parents have to pay for it but im not sure if it will make my computer slower? i have windows vista and i dont have java and it downloads java for you if you dont have it. does it make your computer slower? is it worth it?

I m 17- married and have a GED- i m definitely not stupid- i m smart i just hated high school when i was younger and didn t go.

Will I have any luck in being eligible to join either of these branches?

Will this increase my chances of being deployed more often or being deployed in general?

I m really talented when it comes to computers for the Average Joe- I know HTML- Little Java- and I can build a computer from scratch- aswell as do desktop maitenence on windows machines.

I ve also got a non-computer related skill being a Certified Nursing Assistant- so i m hoping i m not worthless.

I just want any suggestions/help I can get... thanks.
I don t want to join the army or marines- i think my wife would pull her hair out- I don t want to put her through that.

I tried to access carfax.com using my Blackberry s Internet browser and it wouldn t let me because I need Java. Is there anyway to get Java on my phone and if not is there anyway I can access a site that requires it another way?

I have the newest version of Java and I have Java and JavaScript enabled.

When I say "working programs" I mean programs that you install and stuff.

Im trying to use Java like one would use VB.

Can anyone tell me how- or can anyone post a link to a website that gives tutorials on how to achieve this or something?

PLEASE PLEASE PLEASE I really need this

I am wanting to go to school to possibly learn to do Java but I don t know a WHOLE lot about it.A friend taught me a lot of things on computers and shocked him how fast I learned and he said I would be really good at Java so now I am curious as to what it might consist of and about how much money I could make at it.Does anyone have any idea ? Thanks.

okay- so this morning i downloaded a Java thing so i could view these videos on a website- but it didn t work. and now i can t view youtube videos because i have to download a new flash player. i ve downloaded the latest one- but it says the same problem.
maybe because i m on vista? i don t know...
my computer is Toshiba Satellite Laptop...

I am an intermediate Java programmer and need help finding a really good Java textbook I can order online most books I find are just for the beginners but I pretty much know all the basics HELP???
All right maybe some game designing and cryptography

i would like to go on the likes of runescape and other games online but i dont know a good website to get java for your psp can you even get it ?


the first person to give me a valid website i will give the best answer too.............

keeps saying:
This game cannot be played using your current settings. Please- try the following:
Check to make sure that java is enabled in your browser. (learn more)
If you do not have java installed you may download it here.
To learn more about java support for browsers- visit our help pages.
yahoo games works on my ie tho...

All the sites are blocked... and its a peice of crap old computer so virtually no flash or java. anyone know a site that has simple games. (and no ive used proxys games just dont load)
All the sites are blocked... and its a peice of crap old computer so virtually no flash or java. anyone know a site that has simple games. (and no- ive used proxys games just dont load)

Edit:: no USB port either =/ I mean old

pls i required to run core java and j2ee application to done my project.so i required this software how to dwld it for free version from any site

I want to learn JAVA on my own. I know C-C++-VB.
Where can I get the free material to learn JAVA. I donot have net at home- so please tell me downloadable tutorials which I can download at college and read at home.
Please tell me what all softwares- compilers etc will be required.
The site of sun microsystems is very confusing.
I have downloaded the book "Thinking in JAVA". Is the version of java explained in the book latest or is there any new version.
what is the diffrence between J2EE and J2SE?
Which SDK kit should I download for personal learning from this link http://java.sun.com/javaee/downloads/index.jsp

i need minang- java- batak- ambon- dayak dresses!

Tuesday, June 24, 2008

Java has an obvious openwebpage function. I would simply like to open and read a webpage with visual c++. I guess C# is more friendly for that- but I want to do it in c++. I would guess it s easy- but not if you don t know how. Thanks

I have jdk1.4 version .I am trying to download bluejava but its not happening.Please....help I need bluejava for my exam.

I am trying to write a java doc for a method. In that I want to display the string "a@b.c". How to do that? If we give it directly- it is just displaying "a" in javadoc.

I am a B.E graduate. I didnt get campus recruitment. Now I am in Pune and looking for a good training institute around J.M road in Pune. Can u pls suggest some good quality software training institutes around J.M road who teach courses like Java - .Net and Oracle and also give individual attention to students. Pls also suggest which are the institutes I should stay away from.

I am currently having issues with my computer. I am running Windows Vista Premium Home Edition and I have Firefox 3 downloaded. None of the FF browsers have allowed Java to load *at all*. Is this one of the incompatibility issues I will face? Is there a possible patch where FF will not freeze when trying to load a game or something that uses Java?

I have 6 updates of each- each one about 120 megs in size. Do I need to keep all these updates? Or is the most recent one sufficient?

I have downloaded Java and have all the updates. Im pretty sure I do not have any viruses....

K. I have up to date safari and up to date system priorities.
BUT. runescape still
DOESNT WORK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
it still displays the java icon and it looks like there is a refresh icon oround it. HOW DO I FIX IT PLZ HELP ME!!!
by the way- my account name in Ness970.

perl and php support both procedural and oo. Are Java and .Net all OO or do they also allow for procedural programming?

BTW: i was never a big fan of object - oriented :-)
because i just couldn t wrap my head around it :-)

there is some part in u600( samsung ) which called " java word" so u600 surely can use java-but when i copy a java game to cellphone-cellphone is not able to run it!
how can i use java program-game and etc- on u600 cellphone?

In JAVA- how can I convert from a String to a Date format??
Is this possible?

im currently @ a hotel and im tryin 2 play runescape. but the computer does not have jave. so when i download it and try 2 install it says i need an admins assistance. i cant access the admin settings without a password any suggesstions?

i am a student.. aspiring to learn java.. self learning is better or can i go to hyderabad for a course?

keeps saying:
This game cannot be played using your current settings. Please- try the following:
Check to make sure that java is enabled in your browser. (learn more)
If you do not have java installed you may download it here.
To learn more about java support for browsers- visit our help pages.
yahoo games works on my ie tho...

Basically I m looking to create a dropdown box that will select a category and create a sub category for the second box. A city/state drop down boxes are a good example. If you choose "california" in the first box- your options for the second box would be Los Angeles- San Diego- Anaheim- etc. . . I need to use this to create an online form.

Reuters reported about a study that found that "women who reported drinking two to three cups of caffeinated coffee per day had a 25 percent lower risk of death from heart disease than women who did not drink coffee. The researchers saw a smaller decreased risk for men but it was not statistically significant."

Are you going to drink more coffee now? Does this positively change your opinion of java- a cup of joe- the black gold?

Too much coffee makes my mind race. ZOOOOM!

http://health.yahoo.com/news/reuters/coffee_health_dc.html
Thanks cinema. I was wondering about tea (and tea drinkers too). I only drink tea when I m sick. lol

Where you move a ball through a labyrinth from a 1st person perspective? I remember there being relaxing music in the background and levels with pretty cool scenery.

why does it keep saying something like
"out of memory at line 19"? i dont know what that means and just keeps popping up! i just got my computer on the weekend- also it kept saying i dont have the latest update of java and i know i have.. help me anyone?

im well versed in HTML- css- js- java- vb- sql and php- id like to integrate ajax with php or i can learn asp.net pretty easily. anyone know of a good place to learn it?
i learn good from looking at code and microsoft s site [as usual] was crap

i making an applet in english but require it in portuguese also..
so what can i do

Hi all-
I m working on this application where I have to drag and drop a swing component say-a Button or a textfield. With the code I have- when I try to move the component- it gets kinda "shaky" and a copy of it is visible at some distance from it. I ve listed the code below. Could anyone tell me whats wrong in my code? Any help will be appreciated. Thanks.

import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.SwingUtilities;
import javax.swing.filechooser.*;
import javax.swing.event.*;
import java.net.*;
import java.util.*;
import java.sql.* ;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;


class DefineTemplate1 extends JFrame
{
JButton btnsave;
JScrollPane jsp;

int X;
int Y;
public DefineTemplate1()
{
getContentPane().setLayout(new GridLayout(5-2));
btnsave=new JButton("Save");
getContentPane().add(btnsave);
MouseListenerClass M1 = new MouseListenerClass();
btnsave.addMouseMotionListener(M1);
setVisible(true);
setSize(500-500);
}


private class MouseListenerClass extends MouseMotionAdapter
{
public void mouseDragged(MouseEvent e)
{
X=e.getX();
Y=e.getY();
btnsave.setBounds(X-Y-80-40);
repaint();
}
}

public static void main(String args[])
{
JFrame frame =new DefineTemplate1();
frame.show();
}
}

Well. I dont know what is wrong. I can only get on runescape every once in a while- like it has a mind of its own. First- I try on my Millenium with Internet Explorer- then it says its loaded but nothing shows up. Then I get on my Vista I think it is with Firefox- and it comes up as server not found. Ive done a lot of stuff- java is updated- firewall and stuff is all off- PLEASE HELP

I am making a game in java netbeans and I am looking to add an image to the screen. How do I do this?

I am looking to add a picture saying loser in this part of the code below. It is called loser.jpg. Does anyone know how to do this?

private void quit()
{
// *** If score drops to zero game is lost and you lose screen appears ***
surface.removeAll();
surface.repaint();
scoreLabel.setText("YOU LOSE! GAME OVER.");

}

Monday, June 23, 2008

java is one of the computer language.

I m a Mechanical Guy- want to develop optimization technologies using Artificial Neural networks and Genetic Algorithms- For which I prefer Java(Not knowing the technical contents of Java But simply coz of the craze ). Can I learn Java with a short span. I m New to the field of programming and know some basics in C

**********
*********
********
*******
******
*****
****
***
**
*

Also-

*
**
***
****
*****
******
*******
********
*********
**********

How is this done using java nested loops?
Please show me step by step on how that is done- I really have no idea on how to do this...Thank you.

(This is in java language.)

Thanks
please also explain on the steps too..Thanks

1. Java
2. Dot net
3. PHP
4. Python

I m interested in purchasing a MacBook Air. Basically I would use it for the basic computer functions- as well as a computer to write software code. Is it possible to write programs for windows on a mac? I would use either C++- Java or Visual Basic. Thanks!
So if I can write windows programs on Mac- lets say Java or CSS- what s a place to get started? I suppose I ll have to learn how to make it work on both OSs. Where can I get started?

Sunday, June 22, 2008

1. Java
2. Dot net
3. PHP
4. Python

I m interested in purchasing a MacBook Air. Basically I would use it for the basic computer functions- as well as a computer to write software code. Is it possible to write programs for windows on a mac? I would use either C++- Java or Visual Basic. Thanks!
So if I can write windows programs on Mac- lets say Java or CSS- what s a place to get started? I suppose I ll have to learn how to make it work on both OSs. Where can I get started?

Is there such thing yet as a Java-based internet browser for Wm6? Like having the ability to play online Java games through the browser? My phone is a AT&T Tilt aka HTC TyTn II with Windows Mobile 6.0 on it.

I am writing a program for MIDP 2.0 mobile platform- which makes a socket connection to a server. I am using Java mobility tools that came with the Netbeans DVD.
Please tell me how do I create a socket connection.
It should do the same thing inside a mobile phone as the following code does inside a PC.
String hostIP = "192.248.16.85";
int port = 80;
Socket skt = new Socket(hostIP- port);

What I m trying to do is reverse a string w/out using the reverse function and replace all numbers with it spelled out in english.
Ex. "as23dfs" returns "sfd three two sa"
Can anyone please helpPLEASE.
Thanks

Theres this one game on a website called Powder Games- and it runs on Java. I want to know if theres a way that i can download that game and play it on another computer with certain software or something (A computer that doesnt go online).

So if you know how- please tell me =D

All I now is that it has Wii flash 7.

I have to create a non-GUI based Java application that calculates weekly pay for an employee. The application should display the text that requests the user input the name of the employee- the hourly rate- and number of hours worked for that week. The application should then print out the name of the employee and the weekly pay amount. In the printout display the dollar symbol ($) to the left of the weekly pay amount and format the weekly pay amount to display currency.

I have no idea how to write this and I need it for a work presentation on Monday! Please help!

it doesnt work. i downloaded the Java SE but i still dont have the JDK file when i open C:\Program Files\Java. Can someone help?

1.Mean Bean
2.Loca Moca
3.Big Black
4.Lo-Ball
5.Russian
6.Nut-Up
7.Irish Blend
8.Chai Hai

Cleaning up my computer.. can I remove any of these?

ADO.NET Entity Framework 1.0- Adobe Color Common settings- Adobe ExtendScript Toolkit2- Adobe Shockwave Player- Apple Mobile Device Support- Apple Software Update
Broadcom 440x Integrated Controller- Broadcom Driver Installer
Conexant HDA D110 MDC V.92 Modem
Dell Resource CD
GTK+ 2.10.13 runtime environment
High Definition Audio Driver Package
Intel(R) Graphics Media Accelerator Driver- Internet Service J2SE Runtime Environment 5.0 Update 3- Java(TM) 6 Update 1 (2 3 and 5)
Microsoft .NET Framework 1.1 <-- Many of those..- Microsoft Silverlight- (then many things with Microsoft that I don t think I should remove)- MSXML 4.0 SP2 (KB927978)- MSXML 4.0 SP2 (KB936181)- MSXML 4.0 SP2 Parser and SDK- MSXML 6.0 Parser- msxml4
OpenAL- OpenLibraries
QuickSet
Secure Browsing- SigmaTel Audio- Solid State ION Internet Explorer Plugin- Sonic Encoders
TortoiseSVN 1.4- Web Application.

Yesterday I had to reformat my computer and I spent all day reinstalling programs. Everything was working fine until towards the end of the night when most websites refused to open and I tried with both IE6 and Firefox. I am running XP Pro.

I have tried the following with no luck:
* adjusting the privacy levels
* deleting all cookies/temp internet files
* disabling firewall & anti-virus
* running Spyware doctor (which deleted over 100 trojans etc)

I noticed that the problem possibly seemed to happen after I had installed Java and Flash Player. (This could just have been a coincidence though.) So I have since uninstalled them. I also have tried uninstalling McAfee anti-virus - which was a really stupid thing to do because I now can t get back onto their website to download it again.

I am currently using my laptop which is working perfectly so I know there is nothing wrong with my internet connection. (BT Broadband.)

Any suggestions would be greatly appreciated. Thanks.
Thanks for your response. But I am using BT Broadband on my laptop and it is working with no problems whatsoever. ?

how do i remove the 4chan.js code from my computer? is there a program that does it or do i have to uninstall java completely from my computer?

The application is nothing bit- just a game I programmed- Snake.

Solve the expression in bluej environment of java programming

Some Chatters have a program sent as a "Invitation to a Private Room" that is malicious. It disables my browers by running uncontrolable. They use the Applet as a weapon to boot other chatters out of a chatroom. The worst room is AT&T 40s Room.

so i have the recipe to make it. However- do you know where i can purchase the chocolate syrup that starbucks use in England? or if i cant- is there an alternative chocolate syrup that is close to the stabucks flavour and gives a nice taste? because i can tell you that melting cadburys dairy milk chocolate does not work however good you think the idea is at the time:P.
does anyone know how they make their chocolate syrup? what ingredients they use? so then i can make it at home
anything like that will be of great help
thanks!

GLASS PLAYER JAVA FULLVERSION

i downloaded the application- but it tells me that my proxy settings won t give me access to the server- what do i need to do? it tells me to go to internet options and connections- but only tells me to check and see if they are right- but i don t know what right is.

It let me play on firefox for about 3 games then java stopped working on it...Now the same thing on IE...what the heckl?

I have vista and I m back to zero- as if I had bought a new computer.
I can t see certain images and videos. What do I need to download? java? adobe? I have no idea- and I don t want to f*ck things up again.

I am just ending my sophomore year in high school- and in the first semester I had gotten decent grades. 3 A s and 3 B s- however- my second semester- I had some family problems and had gotten 3 C s- 2 B s and an A. Freshman year- I had nearly all A s both semesters with a B in Java Computer Programming both semesters. I have a feeling I just screwed up my chances into getting into a decent college with a screwed up sophomore year. How will this horrible second semester affect which colleges that I apply to?
I am just ending my sophomore year in high school- and in the first semester I had gotten decent grades. 3 A s and 3 B s- however- my second semester- I had some family problems and had gotten 3 C s- 2 B s and an A. Freshman year- I had nearly all A s both semesters with a B in Java Computer Programming both semesters. I have a feeling I just screwed up my chances into getting into a decent college with a screwed up sophomore year. How will this affect my chances into getting into a decent college such as a UC?
California- US

Saturday, June 21, 2008

I am just ending my sophomore year in high school- and in the first semester I had gotten decent grades. 3 A s and 3 B s- however- my second semester- I had some family problems and had gotten 3 C s- 2 B s and an A. Freshman year- I had nearly all A s both semesters with a B in Java Computer Programming both semesters. I have a feeling I just screwed up my chances into getting into a decent college with a screwed up sophomore year. How will this horrible second semester affect which colleges that I apply to?
I am just ending my sophomore year in high school- and in the first semester I had gotten decent grades. 3 A s and 3 B s- however- my second semester- I had some family problems and had gotten 3 C s- 2 B s and an A. Freshman year- I had nearly all A s both semesters with a B in Java Computer Programming both semesters. I have a feeling I just screwed up my chances into getting into a decent college with a screwed up sophomore year. How will this affect my chances into getting into a decent college such as a UC?
California- US

Write 2 different programs to produce the following output. Use nested ‘for’ loop.

(a)

1
1 2
1 2 3
1 2 3 4


(b)
... *
.. ***
..*****
.*******
*********

This is the program that was given to me:

public class NestedLoopExample {

public static void main(String[] args) {

for (int i = 1; i <= 5; i++) {
for (int j = 1; j < i; j++) {
System.out.print(j);
}
System.out.println();
}

System.out.println();

for(int i = 1; i <= 5; i++) {
for(int j = 0; j < 5 - i; j++) {
System.out.print(".");
}
for(int k = 0; k < i*2-1; k++) {
System.out.print("*");
}
System.out.println();
}
}
}

But I dont understand why the program is like that...Could someone please explain it to me or maybe alter it in a way it s easier to understand? o.o? I know this is easy but teacher havent teach me how to do this- I m trying to learn it on my own first...Please help thanks

I ve been playing Vandoren Java reeds- but all of my saxophone friends are playing on Vandoren V16 s. Are they the same? Are they different?

just here within the past 3 days youtube does not seem to want to work for me. i will wait for a video to load and then hit play and it will play for like 3 seconds and then it sticks and i can drag it forward but it will still only play for like a second and then it will get stuck again- and there is absolutely no audio being produced what-so-ever. any ideas? i have the most up to date macromedia flash player- and java and javascript are both enabled.

I accidentally deleted my mac java plugin. :((((((( Then my computer keeps freezing up and stuff.

does anyone knows how to convert an html file to text file and create an array that counts the number of tags in java?

for example:
<head>
<body>
<p>Hello World.</p>
<p>Please Help!<p/>
<head/>
<body/>

to text;
hello World.
Please Help!

tags:
head 1
body 1
p 2

***********************************************

Thank you!

I am interested in getting printed 1000 shirts about various programming stuff. for eg.

Shirt would have written java- .net- microsoft- oracle with their logo on it.

Do i need to sign a contract or something or i can get them printed and sell right away ???

I am using
Queue<Node> DFSqueue = new LinkedList<Node>();
to do a DFS search of a graph. My program seems to get stuck in an infinite loop during my while statement:
while (!DFSQueue.isEmpty()){
and I am wondering if that is because LinkedLists have two null nodes at the beginning and end- so they are never actually empty?

I am a little confused- and if you can t clear this up for me can you please tell me how to create a queue that uses an ArrayList or another type that will work properly for a DFS

Hi I make text based games but have never finished them.

I have been working on a project called halloween online it s going to be a really good game missions-rob shops and more.

The thing is I have no one to help me with it I have made the home page-registration page- and the login page but i cant finish it without help.

Can someone please help me sorry you will not get paid for this but will be admin.

you will need:
php skills
mysql skills
html skills
and maybe java

here is some pictures of the project so far http://mmorpg.com/discussion2.cfm/thread/184320

Thank you for replying
You will get money after making the game because there will be a donate page 50/50

why my limewire is not working.. im clicking on its to open but nothing occurs no loading nothing.. i also have java on the pc and my pc is laptop ?? thanks

hi... is it ok to join sql star to do sun certified java? or are there any other places which i can consider?

I use widows XP and this has happened all of a sudden.

i have Java downloaded and it used to be able to run runescape. now i cant do it- can u please help me if u got any answers? thanks.

im trying to load a game an it keeps coming up with a red cross on a white background in the top left corner.ive installed java-shockwave and all sorts of things but it stil wont let me play.any ideas?????

I have the latest java and flash player but i cant understand why i get this. My wife gets it on her laptop as well and it s a new laptop so it s not just on my pc.

http://www.flickr.com/photos/25318999@N07/2577524063/sizes/o/
But it think it got something to do with the adds on the page... because right after that if i press OK the there were a add is supposed to be the is a window the size of the add but it just said Internet explorer cant desplay
this is what it looks like after i press ok

http://www.flickr.com/photos/25318999@N07/2578452406/sizes/o/

I d need something that starts out *very* basic--including stuff like what software to use to program *on a mac* (and- if terminal s the answer there- how to use some of its commands) and how to compile things.

I try to play daily crosswords that require the java propgram and it even had a link to download it. I did but the crossword grid still doesn t open like it should. I tried to find the problem and cannot. I thought maybe it needs to be turned on or some setting is checked wrong. I see nothing. Someone know what the prob is? Why wont the grid open on the puzzle

Java is one of the computer language. Which is harder to study or to learn Java or C language?

T was the Internet Night Before Christmas

Twas the night before Christmas- when all through the Net-
There were hacker s a surfing. Nerds? Yeah- you bet.
The e-mails were stacked by the modem with care-
In hopes that St. Nicholas soon would be there.

Snowman
The newbies were nestled all snug by their screens-
While visions of Java danced in their dreams.
My wife on the sofa and me with a snack-
We just settled down at my rig (it s a Mac).

When out in the Web there arose such a clatter-
I jumped to the site to see what was the matter.
To a new page my Mac flew like a flash-
Then made a slight gurgle. It started to crash!!

I gasped at the thought and started to grouse-
Then turned my head sideways and clicked on my mouse.
When what to my wondering eyes should appear-
My Mac jumped to a page that wasn t quite clear.

When the image resolved- so bright and so quick-
I knew in a moment it must be St. Nick!
More rapid than mainframes- more graphics they came-
Then Nick glanced toward my screen- my Mac called them by name;

"Now Compaq! Now Acer!"- my speaker did reel;
"On Apple! On Gateway!" Santa started to squeal!
"Jump onto the circuits! And into the chip!
Now speed it up! Speed it up! Make this thing hip!"

The screen gave a flicker- he was into my "Ram"-
Then into my room rose a full hologram!
He was dressed in all red- from his head to his shoes-
Which were black (the white socks he really should lose).

He pulled out some discs he had stored in his backpack.
Santa looked like a dude who was rarin to hack!
His eyes- how they twinkled! His glasses- how techno!
This ain t the same Santa that I used to know!

With a wink of his eye and a nod of his head-
Santa soon let me know I had nothing to dread.
He spoke not a word- gave my Mac a quick poke-
And accessed my C drive with only a stroke.

He defragged my hard drive- and added a "Dimm"-
Then threw in some cool games- just on a whim!
He worked without noise- his fingers they flew!
He distorted some pictures with Kai s Power Goo!

He updated Office- Excel and Quicken-
Then added a screensaver with a red clucking chicken!
My eyes widened a bit- my mouth stood agape-
As he added the latest version of Netscape.

The drive gave a whirl- as if it were pleased-
St. Nick coyly smiled- the computer appeased.
Then placing his finger on the bridge of his nose-
Santa turned into nothing but ones and zeros!

He flew back into my screen and through my uplink-
Back into the net with barely a blink.
But I heard his sweet voice as he flew from my sight-
"Happy surfing to all- and to all a good byte!"

computer>programming

i downloaded the latest version of adobe flash player and even restarted my PC. i even turned on the active scripting option from the tools menu. still when i log on to youtube it says that either my javascript is turned off or i have an older version of flash player..kindly help
i am using internet explorer..

Friday, June 20, 2008

but some of my friends say go for java i m confuse which one i choose. and which one is better.

I ve just gotton a new computer busome programs are missing. For some reason when i try to access to youtube some error comes out saying about my java script turned off or my plash player ain t right. I ve already have both programs enabled but youtube still doesn t allow me to watch vidoes. I can watch videos on other sites e.g. crunchy roll- veoh- but the vid goes realli slow...the motion is realli lacking. is there something wrong?

P.S i ve currently got abode flash player ver. 9

i have a feeling it need that sound card thingy- because near the time at the bottom i just have 2 icons which are "java update available" and "hp center" - NO SPEAKER! but my cd drive does not work! am i totally screwed from making them work?

codings for Java script (IF statement) I have given some of the product in check boxes for customer selection of the product. if customer needs all. using check box with select all option by clicking single check box it should select all products

Can somone please tell me where to download the following programs...

1. The JAVA program where you can make games.

2. Files for habbo hotel (Not making retro- signed contract wih sulake)

3. The SHOCKWAVE program used to make habbo hotel

4. Some coding to make a basic game of HABBO

Once again I will stress- I am not making a retro hotel- I have signed a contract with sulake so I oculd get in trouble with the law for publishing it to an internet site. I don t know any computer language like C++ so if you could please find me a tutorial or something that would be great.

Remember- the more you answer- the better chance you have of getting the best answer.

whenever i click a video- instead of the video i see this "Hello- you either have JavaScript turned off or an old version of Adobe s Flash Player. Get the latest Flash player. "

i click "get the latest flash player" and it takes me here: http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash

i hit install and then i get the pop-up and i click install again.

after that it takes me to a page that says installation successful but when i try a youtube video i get the same results.

i have restarted my computer and let the download be the only open browser but i cant get it to work

PLEASE HELP!!!!
i am running windows xp
ALSO youtube works on mozilla firefox

I need to write a Java program that will be able to interact with my web browser and "read" text off its screen and into a file. The text I want to read is generated by some type of script- so I can t just read it out of the HTML- is there some way for Javato actually see what tex is displayed on the screen? Links to a function library would be helpful :)

i dont have a jdbc driver on my server D: what can i do?
i use java because i am making a game in java

Recently when I try to go to Youtube it says this "Hello- you either have JavaScript turned off or an old version of Adobe s Flash Player. Get the latest Flash player. " I went to download the Flash Player- I had to click at the top to allow the Active X program to download- and it downloaded but then my computer said this at the top "Windows has blocked this site from...something or other" And it still will not play anything with Flash because it says "To view this content- JavaScript must be enabled- and you need the latest version of the Adobe Flash Player" How do I enable it or turn it on? Pretty step by steps if u are able to please. Thank you

ok- well i went on youtube today and i tried to watch a video. then where the video would be it said Hello- you either have JavaScript turned off or an old version of Adobe s Flash Player. Get the latest Flash player. and the get the lastest flash player part was highlighted. so i clicked it- then it went to the java site and i clicked install- and then nothing happend. i tried numorous times clicking it but still nothin happend. notta. ziltch. so then i read the thing again- and it said that javaccript isnt enabled- so i tried a bunch of stuff and nothing happend.. can someone please help!!! i will give you as many points as you want! so now- i cant og on youtube- my lil cuzin cant go on her club penguin site- amd every single friggin site WONT WORK! they all say the same freaking thing! so please- please help me.

I downloaded the .cab file containing the installation file for Yahoo! Go 3.0- but I get an error message regarding Java settings. How can I change this so it will work?
It says that it can t find PInvoke DLL Interop.dll- so what do I need to do with Java? If there s a download- how should I go about doing it?

I would like to be able to input a certain date such as 3/17/2005 and get an out put that would tell me what week of the year that was and what day it was so a T or W or whatever. Thanks for any help

Humans first inhabited New Guinea- Australia- and Tasmania around 40k y.a.- when the First Wave of H. s. sapiens migrating out of Africa eventually found their way to Sunda- then to Sahul. This theory is supported by both archaeogenetic (e.g.- 1st branch of M haplogroups) and linguistic (e.g.- distinctness of Papuan and Australian tongues) evidence. Fast fwd 35-000yrs. A group of Formosans venture out of present-day Taiwan to begin the great Austronesian Expansion- re- colonizing most of Malay Archipelago and beyond. While their legacy is great- they didn t fully displace the original Papuans and Australians.

So what happened to the peoples of Sumatra- Java- Borneo- etc. BEFORE the Austronesians veni-vidi-vicied? They would have descended from the First Wave- looked like Papuans- and spoken similar languages. Why were they displaced/assimilated into Austronesian cultures but their Papuan cousins spared? What made them so unlucky? And where are their archaeological remains?
You are right there are healthy debates concerning the details of the pre-Austronesian habitation of the Malay Archipelago- Melanesia- and Australia (e.g.- one wave or multiple waves- out-of-Africa or multi-regional- exactly how many tens of thousands of years ago).

Regardless- by the time the expanding Austronesians reached Luzon circa 5000-3000 BCE- there must have been a mixture of peoples populating the Malay Arch and beyond. Looking at the composition of the cultures and languages of Oceania of 1500 CE (pre-European)- I think it is fair (or is it?) to make the observation that: 1) Austronesians had overrun most of the Malay Arch; 2) pre-Austronesian Papuans and Australians largely remained in place. I am curious why the difference in fates? Was the Malay Arch more sparsely populated? Were these indigenous Malays less equipped to defend themselves against the weapons or diseases of the Austronesian invaders?

Normally I would not- but I ve heard that the two don t like each other. And while I understand I am installing over 2- I would like to avoid conflict. I will not be trying to run both at the same time. I have friends using the release candidates who are having major trouble getting Java to work (not that it has anything to do with my concern.)

I m looking to fill the left and right side of the tank- keeping the middle bare. I know i want java moss to grow up the rocks- but i m also looking for a bit of colour in plants too. I ll be buying them next weekend- so winner gets me buying them and i ll post a vid!

http://uk.youtube.com/watch?v=8RA-nor-CYY

I see that the iPOD Touch Safari Browser does not support any of the MPEG formats except MPEG4. Also does not support JAVA or FLASH. Amongst other things....

When browsing sites that have audio/video embedded- do you have problems watching or hearing?

How about game sites.... most use FLASH!! What do you do??

I do not want to be stuck watching ONLY You-Tube video and not being able to access game sites (like POGO- etc....)

Your thoughts????

I have been having problems with my computer since yesterday and I cannot get it back to the way it was. I have uninstalled certain things such as Shockwave- Java and Flash Player and reinstalled them. It seemed to help a little but not much. I still cannot click on some things. For example-pogo (cannot play the games-when I click- nothing happens). I have cleared cache- deleted cookies- etc. I have done everything that I know to do.

*Is it loaded to the user s computer and executed afterwards?(when a user loads a web page containing an applet)

or
*Is it only a cookie that is downloaded?

and where is the applet executed? web server or user machine?

I v heard that one of the advantages of applets over applications is that it doesnt have to be down loaded to the user machine. Pls explain

I am new to Java and don t know how to skip a line when displaying somthing?

In VB it is: vbCrLf.

I am using the JOptionPane class and not the console.

Thanks...

I have done some programming in Visual Basic.Net but thats as far as my talents lie...

I know theres Java- C++- C#- C or Visual Basic but what features or benefits do they have?

I just need some suggestions for my project.....it s a website and till now I don t have ideas for what is it about?!!!!
am good at HTML-CSS and Java script but I still need suggestions to start my work.

Thursday, June 19, 2008

import java.text.*;
import java.util.*;

public class Robot
{
private String robotName;
private double priceEach;
private int numSold;

// Empty constructor
public Robot()
{
}

//Full constructor- numSold should be set to zero!!
public Robot(String r- double p)
{
robotName = r;
priceEach = p;
double numSold = 0;
}

public int getNumSold() {
return numSold;
}

public void setNumSold(int numSold) {
this.numSold = numSold;
}

public double getPriceEach() {
return priceEach;
}

public void setPriceEach(double priceEach) {
this.priceEach = priceEach;
}

public String getRobotName() {
return robotName;
}

public void setRobotName(String robotName) {
this.robotName = robotName;
}

// totalValue() method
public double totalValue(){
double amount;
amount = numSold * priceEach;
return amount;
}
// updateSales() method- The numSold variable should return nothing!!
//Parameter is the number of addition of that type sold. Add this to the
//number to the numbSold instance variable and return nothing!
public int updateSales(int update){
int sales;
sales = update + numSold;
}

// The toString method is always required
public String toString(){
return (robotName +" has sold "+ numSold + " items costing " + money.format(priceEach) + "each for a total of "+ money.format(amount));
}
}
It says the following:

java.lang.NoSuchMethodError: main
Exception in thread "main"

I get the problem at the bottom of the program:

public int updateSales(int update){
int sales;
sales = update + numSold;
}

// The toString method is always required
public String toString(){
return (robotName +" has sold "+ numSold + " items costing " + money.format(priceEach) + "each for a total of "+ money.format(amount));
}
}

Apart from sun.forum what are the other best websites that could provide technical help for java related questions and problems. sometimes even if i have googled enough i could not solve certain error that i am facing and when i post it i have to wait too long sometimes. Please suggest me any other good websites- forums or even live chat that could provide java help.
Please help me.
Thanks a lot for your answer mike but i need pages that are free of charge service.

Hi
I have an avery that is six by 4 on the outside and 3 by six in the inside.i have zebras and canarys and i was thinking of getting java finchs and budgies-can i get some info on this

// My mind has gone blank and some parts are incomplete. The directions
//are in the comments!
// write a full constructor
public Harvest (String c- int p- double pr)
{
crop= c;
pounds= p;
priceEach= pr;
}
// write a toString method
public String toString()
return ( )

// write a method named cost. It takes no parameters and returns a double
// It is used to calculate the total value of the crop
public double cost()
{
return ("The total value of the crop is " + c);
}

// write a method named storageFee. It takes no parameters and returns a double
// charge them three cents a pound if they store over 10-000 pounds
// otherwise charge them five cents a pound.
public double storageFee()
{
double newFee = c * .03;
return newFee;
}
//write a method named netCost that takes two parameters ( the gross value and the
// storage fee). It returns a double which is the net value of the crop (subtract out what the storage fee was)
**I have to create this program- that is why I am still missing some info. I need to create more content and answer the comments in order for it to compile.
Thanks snew- but it will not let me compile it. It is giving me an error at the following:


// write a toString method
{
return ("Crop: " + crop + " Pounds: " + pounds + " Price: " + priceEach);
}

I am trying to read from a database- but I am getting a error message saying
RESULT SET IS CLOSED

String sqlQuery = "SELECT " +
"* FROM Customers " +
"WHERE Name like + %" + namemem + "% ";

ResultSet rsJob = stmt.executeQuery(sqlQuery);
while
(rs.next())
{
String output =
rsJob.getString(1) + "-"
+rsJob.getString(2) + "-"
+rsJob.getString(3) + "-"
+rsJob.getString(4) + "/n";

JOptionPane.showMessageDialog(null- output);

Does anyone know what that means?
I have a method called : getDBReady();
this initiates the stmt - connection command.

Anythoughts?

if (value == MAX)
if (value < sum)
System.out.println ("value == MAX and < sum.");
else
System.out.printlin ("value is not equal to MAX.");
Thank you very much!!

i have seen many other questions like this but none of the answers help. I used to be able to upload pictures but i suddenly can t anymore. whenever i try to use the advanced uploader- it says that the upload has failed. if i use the simple uploader- it takes half an hour to upload a single picture- even when i make the picture smaller. i have already followed the steps on the website- cleared my cache- cleared my cookies- and updated java- but nothing works!

every time i go to the java runtime download web site it says to download it click install activx controll thing at the top of the screen but theres no bar there to click on?

I have been getting this error in all the YouTube videos I have loaded today. This happened after installing a Flash security update that appeared after turning on my computer.

I use Internet Explorer and have a Windows XP.

I have updated my Flash Player four times- checked to see if JavaScript was on- updated my Java- turned off hardware acceleration in flash settings (turned it back on after that plan failed)- put YouTube in Trusted Sites (turned it back on after that plan failed)- and restarted twice. (Haven t restarted after Java update.)

I am not technologically retarded- but I am not a techno-master either. Please give CLEAR- DETAILED instructions with your answers.
So far- I think reinstalling Flash is the best opition since an update of Flash may have caused this in the first place.

However- just to be sure- can someone also explain how to "uninstall" flash?

There is a sample code in the website
http://www.cs.pitt.edu/~mehmud/cs401/lab6/lab6.html

but i don t know how to open it?

there are 3 .java files and 1 .class file and 1 .jpg file

i saved all of them in a folder- but now how to open and compile it? I mean how to make a project by these files?

1. a command that squares a number.
2. a command that rounds the numbers to three decimel places.
3.and a command that reverses the order of a letter in a word eg. retep

i have windows xp and ever since i downloaded firefox runescapes login page dos not load

I am making ATM project ...I am using Enterprise java beans for that is it going well..My friend has said that it would be wrong to say ATM based on Client server architecture and your conecpt about ATM(i.e a client server based architecture ) is wrong

Is he true or not?

I am trying to right some code that will copy all the files in a particular directory and all files contained in its subdirectories and copy them into a single directory. Any help would be appreciated with as much detail as possible. Thanks

Example. Directory A has sub directoies B- C- D- E- F-
Each sub directory has files and other subdirectories- I want just the files in all those directories to be copied to a single directory. I do not want to keep the directory structure in the new directory. I want one directory with that contains all the files of the other directories. Thanks for help!

Hello everyone-
I am a programmer by profession.
I want to learn how to write an Activex control (a tabbed control to be precise) on the .NET framework. How should I start? Where do I find the online resources for it. I am a little familiar with programming in c#. I have not programmed in MFCs or VC++ although I would definitely want to learn. Most of my programming experience has been in Java.
Please let me know
Thanks

I used to watch Full -Episode online on ABC website -now I get the error JAVA VOIDE and when I click on watch now nothing happends- I disabled Norton and still no change. I remember I had something installed on my pc through abc website previously but I can not find that to re-intall it again ---- any one can help?

ok i was downloading some adobe stuff and i went into my control panel and started deleted programs i dont use anymore. i came across something that said "Java Sun... Environment 6." and date motified "12/6/2006" and i didnt buy the computer till 07 so it came with th computer. it was 114 MB s and on my myspace. the player says uptate it- and when i update it- it still doesnt work. i tried adobe flash- macromedia- java- help! if you help me out i can get you free photoshop or after effects.
its Java (TM) 6 Update 5 114 MB

I have loads of reliable tutorials and know how to program in VB and JS but where can I purchase/download a compiler? (p.s. don t recommend the freecountry unless you have an exact link)

in my java class- we didn t go over parallel arrays very well- and i know how to do just an array- but i have no clue how to do a parallel array- and i need to do one for my final project and the notes that i have (that are online at mathbits.com) aren t really any help. can anyone help me?

i have created tree from xml file using java script and php- the name of the nodes are the (string that i want to search) same as to the search string- so- when some one click the node- how can i be able to search the clicked string against some other folder which contains subfolders and files which (it is so important)the file names is so long and include the path of the tree and include the nodes name??? example i have tree like
AAA
¦
bbb
¦
ccc

the files in the folder are by the name like
AAA____________bbb____________ccc____________ddd____________251254_625325.txt or other extension like .bin or .log...... And the 73 character name this file is kept under the folder.
so if some one click on the node ccc how could i able to search from the folder called ddd?
ya- i am looking from server not client...how can i do it boos???
Please some one explain me- or give me some example- how could i do it?

I am using java to add- update and delete from a access database. Here is my code to add a entry.
sqlQuery = "insert into Customers values(" +
txtCustNo.getText() + "- "+
txtName.getText() + " - " +
txtPhone.getText() + " - #" +
txtBDay.getText() + "#)";
n = stmt.executeUpdate(sqlQuery);

But now I need to search the database and I am having lots of trouble. I really don t know how ot start. Here is what I have

String sqlQuery = "select * " + "from Customers where Name Like " + namemem + " ;";
System.out.println(sqlQuery);
n = stmt.executeUpdate(sqlQuery);

I am searching for a name so I want to have the user only put in a few letters of the name and the results pop up in a JOptionWindow.
any thoughts?
I am also getting this error message.

SQLException: No row count was produced
select Cust_no- Name- Phone- Bday from customers

i have java script it keeps telling me it is not enabled i have followed all the help but no luck if you can help plain easy stages please

I m on mozilla firefox. When i use IE it works fine

Wednesday, June 18, 2008

Lately i ve been having problems with my mac- and i think it has to do with my java. I installed the update one- but it didn t help. how can i reinstall the whole thing?
i appreciate the response- but the website doesn t have the original SE 6- just the Update 1.

I want to learn how to do java coding so I can make games. If I need to download something I want a free download- I don t have much money on me.
Oh and i would like to make my own version of runescape(im not releasing on internet) So how would i duplicate it?

so its a htc s720 and im wondering how to get java for it. anyone know where. i tried at java.com but they dont really telll you which one is which. and you need to sign up to download

cause when i downloaded limewire it says must install java and i went to java.com but having problems installiing java- is there a site with it already and also if you know of a free filesharing site that you don t have to install java-please let me know

i have a samsung e900 with loads of java games on such as tetris etc which i have brought from my network provider

but now ive had a new phone sonyericsson w580i and want to transfer the games off my samsung to my pc so i can then put them on my new mobile so i dont have to buy these games again

Is this possible?

if i get an int how can I test if the digits are reversed the number is unchanged?
Basically how can I reverse an int. I can then compare it to the original

There s something wrong with my Java script or flashdrive stuff. I did all the tool bar- security- enabling the script- and refreshing it. It doesn t work. Help what is wrong with it. I try to download the flashdrive- it won t download. Please help me. The computer won t do much.

when I open multiple tabs cant change tabs by clicking them. I have to cick on the tab I want then minimize firefox and bring it up again so it could go to the tab I want.
I dont want to uninstall and reinstall becaus eI have a lot of plugins I dont wana download again.

how do I fix this problem?

and also a java prblem

everytme a java thing loads it says not responding and then crashes

hey- i have a pretty good knowledge of java. I took AP Computer Science in high school for two years and have a pretty good knowledge of programming in Java.

I want to create a facebook application. I donwloaded the developer app but after that I m pretty much stuch on waht to do. Do i create an applet and somehow uploat it? Is there somewhere i can program online? help?

when i try to open some videos from you tube to watch it just says " sorry- video no longer available" and when i try to open the same one from pc it works just fine!!! why?????!! i installed flash for mac and java and everything. what do you think its wrong?

In java- the result of 0.29*100 is 28.99999999999999996
This occurs even if code is written using BigDecimal (s)

the result of 0.29*10*10 is 29.0- but 0.29*(10*10) is 28.99...

The same behavior can be seen in javascript- so it is not just a java thing

any ideas- what the heck? but 0.29f*100 works fine

what is the numeric theory?
Thing is- this works fine in vb and in vbscript. Maybe only certain runtimes will have this problem.

Could someone explain how to use these in Java- and perhaps what the syntax is.

Thanks

full deatiles about how can i run a java program

i am planing to buy a phone before the month ends. i am not a businessman or anything close to it- i am still a high school student from auckland new zealand- but i am after a phone that is good for surfing the net- wifi- camera- good sound quality and full qwerty keyboard. because i think it looks really cool. but if i cant decide which phone to buy. i heard a lot of complaints/problems with i-mate jasjam- but i think its a really cool phone with the side slide keyboard- touch screen and decent size of keys. nokia e90 on the other hand has better quality (i think) and would accept a lot of applications like java and symbians- better camera and fm radio- but i am not sure if you can type your text message from the qwerty keyboard. i really cant decide. can you help me? i dont mind about the price.

I have skill in dotnet-java........I want to work partime at home. Does anybody know reliable websites that I can earn money on? plz don t introduce scam website( in these websites they say it s very easy to earn money from their webs but in fact they don t pay)

It was working fine yesterday.. But it isnt working today!!

version - 8.1.0.421

Java latest version installed
Adobe flash player latest version installed

I m taking a computer course this month and I have no experience in programming.. Where should I start off? I heard that Visual Basic is useless...

Tuesday, June 17, 2008

I came to know in an interview that usage of else if in c++- java is not standard or efficient- i just want some one to justify it

i am trying to email myself a copy of a txt file which is updated everyday. i am not home most of the time and so i want java or C++ to email me that file once everyday. how do i achieve that?

in apache- which directory can I put my java script?

example A and B are two threads A has to work with Resource R1 and R2 and B has to work with R2 and R1- when A uses R1 and B uses R2 - it will form dead lock- right? then how it will be resolved ?

Java- Netbeans helps please. Code Included?
Hi I need the following help with this java code. Im using Netbeans software or you can you VB.net. When I run my program it only gives out 1 answer instead of the 5. Here is my code that isnt working.

for (int i=0; i<5; i++)
{
Data = annualwage + annualwage * 0.05 + "\n";

Now with that code- when i enter the values it only gives me 1 line of answers- though i want it to give me 5.


Thanks in advance
For example it says:

10812.232

whereas i want it to give me 5 lines of answers.

Implement this algorithm using an ArrayList of Integers that is initialized to the values from 2 to 100. Your program can iterate numerically through the ArrayList from index 0 to index size()-1 to get the current prime number- but should use an Iterator to scan through the remainder of the list to eliminate the multiples. You can use the listIterator method to retrieve the iterator starting at a specified index into the ArrayList. Output all remaining prime numbers to the console.

How do you start making a program to make a box using jcreator and a drawing tool? I have a drawing tool I just don t know what commands to use and how to use them.

i have tried uninstalling all versions installing the new version gettting the lastest java update everything possibly imaginable
someone please give me some hope on what i can do

My java script is turned off how do I turn it back on

i am trying to play a game that uses java but it just says

java(TM) plug-in fatal error

then under that it says:

several java virtual machines is running in the same process caused an error

how do i fix this?

I have a webcam that I m FTP ing up to my site but I can t find some HTML- Java-Script that will mak it auto refresh right. I ve tryed the "<meta http-equiv="REFRESH" content="5">" thing but that makes the hole page flash and the image somtimes don t appear- and I have tried one other made for webcams but the image "jumps" when it refreshes instead of just going onto the next pic. If you click REFRESH then it works fine but I want it to do it on its own.

Thanks in Advanced

In my previous notebook (Win XP)- it was simple: download & install JDK 1.5; create a file with ".java" extension in Notepad (say for example- ABC.java); then in the Command prompt- first compile the file (C:\ javac ABC.java) which creates a ".class" file- and then run it (C:\ java ABC). But in this new MacBook- I m totally confused. Please help me out. I m a novice when it comes to Mac. Detailed- step-by-step procedural explanation would be highly appreciated.

Don t know whats wrong- used to work fine- they have been upgraded to the latest download- my comp knows its there but just won t use it? everything is enabled so they should work- i go to open a video and it says i need to upgrade- which i already have the latest. i go to open a game page my java icon pops up and then the console closes out and then i get a page that says java not installed. i just don t know what happened- its driving me nuts!! They both used to work beautifully. Could anyone give me some tips!! Much appreciated. Oh and I have Windows Vista.

i m in computer branch . . i have 2 submit a project also after that . curently i have thought about java or .net .can u tell me what r the avaliable options to me .
please be elaborate .

I was wondering if the blue stuff that comes out harms plants and algae.
I have java moss-
and japanese moss balls (algae)
I plan on getting other plants
any other suggestions to cure ick without harming plants and without using ick clear

OK- I don´t know if my computer has java. But i can´t download it from the web page! The yellow bar doesn´t slide down!! Why how can i fix it??
Btw My computer is windows 2007 Internet Explorer... not Firefox
www.java.com

because apparently mine is turned off...

everything was working fine a couple days ago- but now i go to my myspace page and instead of a music player- all i get is this:
"Hello- you either have JavaScript turned off or an old version of Macromedia s Flash Player. Click here to get the latest flash player. "

i ve already gone to internet options> advanced> java
as well as security> custom> etc.

somebody please tell me what is going on?? i can t watch youtube videos either... only once in a great while it will work.
i m using internet explorer.