Forum: Java Feb 1st, 2007 |
| Replies: 33 Views: 32,870 I got the initial part of my design out of a book called "Head First Java". They had a simple Instant messager client and server in there and I just added to it and modified it as I learned more.
... |
Forum: Java Sep 28th, 2005 |
| Replies: 2 Views: 1,483 Hi everyone,
I was just curious if it is possible to put a jar in a jar file?
thanks for your help.
Nick |
Forum: Java Jul 7th, 2005 |
| Replies: 4 Views: 2,396 you can also create an executable JAR file. That won't open the command prompt window
-Nick |
Forum: Java Jul 2nd, 2005 |
| Replies: 5 Views: 2,232 Thank you for the reply!
Nick |
Forum: Java Jun 27th, 2005 |
| Replies: 5 Views: 2,232 I think I might have stated it wrong before. What I was wondering is if it was possible to use a java applet as a form on a web site instead of using an html form with cgi scripts and such. Sorry... |
Forum: Java Jun 26th, 2005 |
| Replies: 5 Views: 2,232 Hey all,
Does anyone know if it is possible to send email through a java applet?
Thanks in advance.
Nick |
Forum: Java Jun 19th, 2005 |
| Replies: 4 Views: 12,963 Thank you for the replies! |
Forum: Java Jun 18th, 2005 |
| Replies: 4 Views: 12,963 Hello Everyone,
I recently have been getting into the python language and noticed that there is a portable python that you could save to something like a flash memory card and then you could write... |
Forum: Java Jun 10th, 2005 |
| Replies: 33 Views: 32,870 Don't worry... I'm not going to. |
Forum: Java Jun 9th, 2005 |
| Replies: 33 Views: 32,870 My messenger program just set up its own server and went off that completely independent from aim or yahoo... I never fully got it to work though because I have Cox as my internet provider and they... |
Forum: Java Jun 8th, 2005 |
| Replies: 4 Views: 1,393 i bought "Head First Java" written by those two and I loved it. |
Forum: Java Jun 3rd, 2005 |
| Replies: 3 Views: 3,484 I think you could do it like this, but I didn't test this.
public boolean randomBoolean()
{
int r = (int) Math.random() * 10;
if (r < 5)
return true;
else
return false;
} |
Forum: Java Jun 2nd, 2005 |
| Replies: 2 Views: 2,844 Thanks Tonakai!
- Nick Nisi |
Forum: Java Jun 2nd, 2005 |
| Replies: 2 Views: 2,844 Hey Everyone,
I just have a quick question... does anyone know how to test 2 integers (int a, int b) to see if int a is evenly divisible by int b? I tried it like this but it doesn't really seem... |
Forum: Java May 23rd, 2005 |
| Replies: 1 Views: 2,504 I'm trying to build a program that uses sockets and connections to connect to the internet. Right now, I use a PrintWriter to send messages out, but I don't like using it? Is there any other... |
Forum: Java May 4th, 2005 |
| Replies: 9 Views: 5,431 Ya, even with the help of the reference book, I couldn't figure out how to correctly use the Location class... |
Forum: Java May 4th, 2005 |
| Replies: 9 Views: 5,431 Ya, I took a bunch of practice tests too and thought they were all harder than the real thing... but I did get a little hung up on the Marine Biology free response question... probably because I... |
Forum: Java May 4th, 2005 |
| Replies: 9 Views: 5,431 well, I just took the AP Computer Science A exam... It wasn't as hard as I had expected! :cool: |
Forum: Java May 2nd, 2005 |
| Replies: 15 Views: 5,685 I'm not sure about your first problem, I've been wondering that myself. But I do know how to solve your resizing problem...
I think that you just want to use this:
... |
Forum: Java Apr 30th, 2005 |
| Replies: 4 Views: 3,650 Ya, I'm with C++ on that. I downloaded the JavaMail API and it didn't make too much sense to me either. |
Forum: Java Apr 28th, 2005 |
| Replies: 4 Views: 3,650 Hey all,
For sort of a final project, I want to build a program in Java (if it's possible) that works much like the GMail Notifier except I want to make it popup a notification if I receive a new... |
Forum: Java Apr 26th, 2005 |
| Replies: 10 Views: 2,257 Has anyone ever used or does anyone know anything about JGrasp? I saw that they were using that at a college I visited recently... |
Forum: Java Apr 26th, 2005 |
| Replies: 3 Views: 1,473 Wow, it makes sense now! Thank you so much to both of you! :) |
Forum: Java Apr 26th, 2005 |
| Replies: 3 Views: 1,473 I just have a quick, dumb question about interfaces... What are they? I mean my teacher has been trying to explain them and I didn't pick up on that and then I read about them in a Java book and on... |
Forum: Java Apr 26th, 2005 |
| Replies: 10 Views: 2,257 I really like JCreator and all of its features. I also tried blueJ and I really disliked it. Eclipse sounds good just because of the easy way to make layouts for applications... but the code is hard... |
Forum: Java Apr 22nd, 2005 |
| Replies: 9 Views: 5,431 The marine bio case study doesn't seem too bad... I need to look at it a lot closer though |
Forum: Java Apr 22nd, 2005 |
| Replies: 9 Views: 5,431 coming up in a week or so, I will be taking the AP Computer Science A Exam. I'm getting a little nervous about it. Has anyone ever taken this? What did you think about it? Anything in particular that... |
Forum: Java Apr 19th, 2005 |
| Replies: 4 Views: 1,638 that's a good idea! Thanks Black Knight. |
Forum: Java Apr 18th, 2005 |
| Replies: 4 Views: 19,006 with the URL code, it's looking for the images inside of the Jar file, obviousely, if there is no jar file created, then it won't be able to find the images, so it must be created before you try and... |
Forum: Java Apr 16th, 2005 |
| Replies: 4 Views: 1,638 I went to a Computer Science and Engineering Day at the University of Nebraska today and now I feel really motivated to program something. The only problem is, I don't have any idea of something to... |
Forum: Java Apr 16th, 2005 |
| Replies: 6 Views: 2,026 |
Forum: Java Apr 16th, 2005 |
| Replies: 6 Views: 2,026 ya I've made executable JAR Files before... I was hoping that there was a way to make .exe files too... But I don't think there is because I can't find anything on it. |
Forum: Java Apr 15th, 2005 |
| Replies: 6 Views: 2,026 Here's a quick, stupid question... is it possible to make an executable file for Java Application? and if so, how? |
Forum: Java Apr 14th, 2005 |
| Replies: 4 Views: 19,006 I had the same problem a few months ago. The best thing to do is to make a URL like this:
URL imageURL = JARFILENAME.class.getResource("IMAGE.JPG");
Just replace the colored parts to your own... |
Forum: Java Apr 12th, 2005 |
| Replies: 7 Views: 2,641 I've never heard of the Scanner class... So I went to the api... and I couldn't find it. But if your goal is to just allow the user to input a letter from the console, then you can use the
import... |
Forum: Java Apr 8th, 2005 |
| Replies: 20 Views: 6,621 I'm not really sure why I thought that loop would last for a minute. Sorry about that...
Nick Nisi |
Forum: Java Apr 8th, 2005 |
| Replies: 20 Views: 6,621 I tried this out and here's the method I came up with... enjoy!
public class Rand
{
public static void main(String[] args)
{
String[] sa = {"HelloWorld", " "}; // holds Hello World or just... |
Forum: Java Apr 3rd, 2005 |
| Replies: 3 Views: 11,631 Alright, the pixelgrabber worked perfectly! Thank you... But now is there a way i can compile the binary back to an image after i modify it a little bit? I'm trying to make something of a... |
Forum: Java Apr 2nd, 2005 |
| Replies: 3 Views: 11,631 Hey everyvody... I have this crazy idea for a program... I want to be able to load an image (most likely a .jpg) into a java program and then I want the program to print out the binary code that... |
Forum: Java Apr 1st, 2005 |
| Replies: 6 Views: 1,528 lol ya... i was one of the kids who stuggled with ap comp sci at the beginning of this year... but im really picking up on it now! |