<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest topics for the forum "New to Java"]]></title>
		<link>http://forums.hotjoe.com/forums/show/1.page</link>
		<description><![CDATA[The newest discussed topics in the forum "New to Java"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Help opening Java</title>
				<description><![CDATA[ hi, I'm having problems opening Java, i'm not programming or anything like that, just managing a device that runs java i think, when i click the link in a web browser i get could not find main class: Settings/Temp/kieran.ord_emlFwk/policy_emlfw. Program will exit? I've tried uninstalling different versions and nothing works?]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3224/4519.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3224/4519.page</link>
				<pubDate><![CDATA[Tue, 7 Feb 2012 04:38:19]]> GMT</pubDate>
				<author><![CDATA[ kieran_je]]></author>
			</item>
			<item>
				<title>indexOf for finding space</title>
				<description><![CDATA[ help please :) just starting java now and trying to find a space in a string, but it return error -1<br /> <br /> [i][color=darkblue]package substringmethod;<br /> import java.util.Scanner;<br /> <br /> public class Substringmethod {<br /> <br />     public static void main(String[] args) {<br />         Scanner user_input = new Scanner(System.in);<br />         String nameChars;        <br />         String fullName;<br />         <br />         System.out.println("Enter your name:");<br />         fullName = user_input.next();        <br />    <br />         nameChars = fullName.substring(0,2);<br />         //System.out.println(nameChars);  [/color]     <br />         <br />       [color=red]  int result = fullName.indexOf(" ");<br />         System.out.println("Space is at post: "+result);[/color]      <br /> [color=darkblue]    }<br /> } [/color] [/i]<br /> <br /> What am I doing wrong :(]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3223/4511.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3223/4511.page</link>
				<pubDate><![CDATA[Sat, 4 Feb 2012 16:07:56]]> GMT</pubDate>
				<author><![CDATA[ Kirra]]></author>
			</item>
			<item>
				<title>output of a program</title>
				<description><![CDATA[ public static void main(String ars[])<br /> {<br /> String text="cOmpUtEr",st=" ";<br /> for(int i=0;i&lt;text.length();i++)&gt;<br /> {<br /> if(Character.isLowerCase(text.charAt(i)))<br /> st+=Character.toUpperCase(text.charAt(i));<br /> elseif(Character.isUpperCase(text.char(i)));<br /> if(i%2!=0)<br /> st+=Character.toLowerCase(text.charAt(i));<br /> else<br /> st=text.charAt(i-1);<br /> }<br /> System.out.println(st);<br /> }]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3213/4495.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3213/4495.page</link>
				<pubDate><![CDATA[Tue, 17 Jan 2012 21:57:17]]> GMT</pubDate>
				<author><![CDATA[ puja219]]></author>
			</item>
			<item>
				<title>Sorting algorithm java confusion! Help please!</title>
				<description><![CDATA[ Hi! In our java class we're doing sorting algorithms.. Now in all honestly I'am confused as hell about these things! I'll paste the code im looking at and if someone would please explain to me how the program is swapping array data that would be great! Thanks!<br /> <br /> import java.util.Scanner;    <br /> <br /> public class inThirdPlace<br /> {<br /> <br /> public static void main(String[] args) {<br />         int[] grades = new int[5];<br />         System.out.println("Please enter " + grades.length + " grades...");<br />         input(grades);<br />         System.out.println("Original data:");<br />         output(grades);<br />         System.out.println("Just doing a selection sort...");<br />         sort(grades);<br />         System.out.println("Sorfted data:");<br />         output(grades);<br />     }<br />     <br />     public static void input(int[] arr)<br />     {<br />         Scanner scanner = new Scanner(System.in);<br />         <br />         for (int i = 0; i &lt; arr.length; i++)<br />         {<br />             System.out.print("Please enter " + (i + 1) + " of " + arr.length + ": ");<br />             arr[i] = scanner.nextInt();<br />         }<br />         <br />         // Make scanner<br />         // Ask for candiate<br />         // While input not -1<br />         //  arr[input - 1]++;<br />         //  Ask for candiate<br />     }<br />     <br />     public static void sort(int[] arr)<br />     {<br />          for (int pass = 1; pass &lt; arr.length; pass++)<br />          {<br />               int largestPos = findLargest(arr, arr.length - pass);<br />               if (largestPos != arr.length - pass)<br />               {<br />                    swap(arr, largestPos, arr.length - pass);<br />               }<br />               //output(arr); //this is for testing purposes only<br />          }<br />     }<br /> <br />     public static int findLargest(int [] arr, int num)<br />     {<br />             int largestPos = 0;<br />             for (int i = 1; i &lt;= num; i++)<br />             {<br />                     if (arr[i] &gt; arr[largestPos])<br />                     {<br />                             largestPos = i;<br />                     }<br />             }<br />             return largestPos;<br />     }<br /> <br />     public static void swap(int [] arr, int first, int second)<br />     {<br />          int temp = arr[first];<br />          arr[first] = arr[second];<br />          arr[second] = temp;<br />     }<br />     <br />     public static void output(int[] arr)<br />     {<br />         for (int i = 0; i &lt; arr.length; i++)<br />         {<br />             System.out.print("arr[" + i + "] = " + arr[i] + ", ");<br />         }<br />         System.out.println();<br />     }<br /> }]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3210/4489.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3210/4489.page</link>
				<pubDate><![CDATA[Mon, 9 Jan 2012 15:19:03]]> GMT</pubDate>
				<author><![CDATA[ benisjammin208]]></author>
			</item>
			<item>
				<title>Sorting 2-D Loops</title>
				<description><![CDATA[ Hello, I'm fairly new at java and cant seem to figure out this fairly simple exercise. I need a method that should pretty much first sort the order of the sub arrays by the rows in least to greatest. For example {{4, 7}, {2, 1}, {1, 3}, {4, 3}, {1, 1}} might be sorted to {{1, 3}, {1, 1}, {2, 1}, {4, 7}, {4, 3}}. The next step is sorting the resulting array by columns from least to greatest. So the resulting array after this would be {{1, 1}, {1, 3}, {2, 1}, {4, 3}, {4, 7}}. Please let me know if this is making sense.]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3206/4479.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3206/4479.page</link>
				<pubDate><![CDATA[Wed, 4 Jan 2012 14:33:09]]> GMT</pubDate>
				<author><![CDATA[ joecartoonfn]]></author>
			</item>
			<item>
				<title>Project help!</title>
				<description><![CDATA[ [b]Please if anyone could help be greatly appreciated![/b]<br /> <br /> Brief<br /> Read in a word and display if the letters are in ascending order or not in ascending order. Ignore letter case in your comparison.<br /> <br /> Example input data Commentary<br /> almost Line 1<br /> effort Line 2<br /> end Line 3<br /> knotty<br /> known<br /> END Terminator<br /> <br /> Expected output<br /> <br /> Almost letters in ascending order<br /> Effort letters in ascending order<br /> End letters not in ascending order<br /> Knotty letters in ascending order<br /> Known letters not in ascending order<br /> <br /> Remember to submit the whole application which must have the class name Main.<br /> Remember any line printed that contains a # will not be considered as part of your answer.<br /> This is so that you can write out a meaningful prompt for any data (containing a # character) and this line of text will be ignored in the comparison of your answer.<br /> If the String variable name holds the character string END then name.equals("END") will return true. [b]]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/3204/4474.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/3204/4474.page</link>
				<pubDate><![CDATA[Sun, 18 Dec 2011 12:10:32]]> GMT</pubDate>
				<author><![CDATA[ ben6]]></author>
			</item>
			<item>
				<title>Map a Network Drive Using Java</title>
				<description><![CDATA[ I have a project that I am working on. One of the items is to see if I can get Java to map a network drive. It is not working. I am using JOptionPane to ask the user for information to input to get the proper command. The variables just keep passing through as null. I can't seem to get it to work. Below is the code. Any suggestions would be great.<br /> <br /> BTW, I have tried Runtime.getRuntime().exec() in a few different various. Am I correct in pursuing this API or should I use another? I just read about JCIFS. Thought this may work but seems it is used for accessing file shares, not actually mapping a local drive.<br /> <br /> [code]<br /> try {<br /> 				JOptionPane.showInputDialog(null, "What drive letter do you want to give the new drive?", host);<br /> 				JOptionPane.showInputDialog(null, "What shared item do you want to map to your drive?", path);<br /> 				JOptionPane.showInputDialog(null, "What user has the approriate permissions to this share?", user);<br /> 				JOptionPane.showInputDialog(null, "What is the password for this user account?", password);<br /> 				String s = "cmd.exe /K START C:\\Windows\\system32\\net.exe use " + host + ":" + " " + path + " /user:" + user + " " + password;<br /> 				String command = "cmd.exe /K net use";<br /> 				Process p2 = Runtime.getRuntime().exec(s);<br /> 				Process p = Runtime.getRuntime().exec(command);<br />                                                                 System.out.println( s );<br /> 		        }<br /> 		        catch (IOException e) {<br /> 		            System.out.println("exception happened");<br /> 		            e.printStackTrace();<br /> 		        }<br /> [/code]]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2916/4242.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2916/4242.page</link>
				<pubDate><![CDATA[Thu, 24 Nov 2011 08:14:40]]> GMT</pubDate>
				<author><![CDATA[ itgeek25]]></author>
			</item>
			<item>
				<title>I require some assistance with my conversion program.</title>
				<description><![CDATA[ nevermind, thanks]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2915/4240.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2915/4240.page</link>
				<pubDate><![CDATA[Tue, 22 Nov 2011 04:46:04]]> GMT</pubDate>
				<author><![CDATA[ sublime303]]></author>
			</item>
			<item>
				<title>FileDialog and FileReader</title>
				<description><![CDATA[ I am looking for a little bit of guidance. I am new to Java. I set up a program to use the FileDialog to allow a user to select and open a text document but when they do, the text of the document doesn't appear in the textarea.<br /> <br /> I have done this with FileChooser and FileInputStream and it works fine. From what I am getting is that FileInputStream doesn't "play nice" with FileDialog. Am I correct in trying to work with FileReader to print the text. I have a piece of some code listed below of something similar that I am trying to do but just a little smaller and printing text to the console. Same idea.<br /> <br /> Thanks in advance.<br /> <br /> [code]<br /> import java.awt.FileDialog;<br /> import java.awt.Frame;<br /> import java.io.BufferedReader;<br /> import java.io.DataInputStream;<br /> import java.io.File;<br /> import java.io.FileInputStream;<br /> import java.io.FileNotFoundException;<br /> import java.io.FileReader;<br /> import java.io.IOException;<br /> import java.io.InputStreamReader;<br /> import javax.swing.JFrame;<br /> <br /> import javax.swing.JFileChooser;<br /> <br /> <br /> public class testFileDialog extends Frame {<br /> 	static Frame frame;<br /> 	/**<br /> 	 * @param args<br /> 	 * @param frame <br /> 	 * @throws FileNotFoundException <br /> 	 */<br /> 	public static void main(String[] args) throws IOException {		<br /> 		<br /> 		FileDialog chooser;<br /> 		String homedir;<br /> 		homedir = System.getProperty("user.home");<br /> 		chooser= new FileDialog( frame );<br /> 		chooser.setLocationRelativeTo( null );<br /> 		chooser.setLocation( 200, 200 );<br /> 		chooser.setDirectory(System.getProperty(homedir));<br /> 		chooser.setVisible( true );<br /> <br /> FileReader something = new FileReader(chooser.getFile());<br /> System.out.println(something);<br /> }<br /> }]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2914/4237.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2914/4237.page</link>
				<pubDate><![CDATA[Sun, 20 Nov 2011 20:02:26]]> GMT</pubDate>
				<author><![CDATA[ itgeek25]]></author>
			</item>
			<item>
				<title>Trying to get class information without opening a new window</title>
				<description><![CDATA[ I am trying to configure a open dialog box with a class name OpenBox to open a text file and input the information into a textarea in another class file, classA. I have everything working except that the OpenBox class is opening the file I select with into a new window. I would like to get it to open the file and input the information into the original classA textarea.<br /> <br /> BTW, this program is just a look a like of a Notepad.exe application. This is just for learning Java functions and features.<br /> <br /> I get get it to work if I create the OpenBox class public inside the classA Java class. I would like to keep them in seperate Java classes.<br /> <br /> I DO understand my syntax errors and I have an idea of what it should be but I keep getting errors. I have tried Abstract Actions too but they don't work. Any suggestions would be great. Forgive me i this is a "silly" questions. I am trying to teach myself as a go along with Java. Still a newbie to Java. Thanks in advanced.<br /> <br /> The problem is lines 100-102 in classA and line 30 in OpenBox.<br /> <br /> Java class classA<br /> <br /> [code]<br /> public class classA extends JFrame {<br /> 	<br /> 	JTextArea textarea1;<br /> 	<br /> 			JMenu file = new JMenu("File");<br /> 			JMenu edit = new JMenu("Edit");<br /> 			JMenu format = new JMenu("Format");<br /> 			JMenu view = new JMenu("View");<br /> 			JMenu help = new JMenu("Help");<br /> 			JMenuItem new1 = new JMenuItem("New             Ctrl + N");<br /> 			JMenuItem open = new JMenuItem("Open            Ctrl + O");<br /> 			JMenuItem save = new JMenuItem("Save            Ctrl + S");<br /> 			JMenuItem save1 = new JMenuItem("Save As...             ");<br /> 			JMenuItem exit = new JMenuItem("Exit                    ");<br /> 			JMenuBar menubar = new JMenuBar();<br /> 			<br /> 			Event op = new Event();<br /> 			//ends<br /> <br /> 	public classA() {<br /> 		<br /> 		textarea1 = new JTextArea(5, 30);<br /> 		add(textarea1);<br /> 		<br /> 		//add local string<br /> 		String grab = "Grab this\n";<br /> 		insert(grab, 1);<br /> 		//end local string<br /> 		<br /> 		setSize(500, 500);<br /> 		setVisible(true);<br /> 		<br /> 		//start<br /> 		<br /> 		setJMenuBar(menubar);<br /> 		menubar.add(file);<br /> 		menubar.add(edit);<br /> 		menubar.add(format);<br /> 		menubar.add(view);<br /> 		menubar.add(help);<br /> 		file.add(new1);<br /> 		<br /> 		//create list item in file and add event handler to it<br /> 		file.add(open);<br /> 		open.addActionListener(op);<br /> 		<br /> 		//create save function<br /> 		file.add(save);<br /> 		<br /> 		//create save as event handler<br /> 		file.add(save1);<br /> 		//save1.addActionListener(sva);<br /> 		<br /> 		//create list item in file and add event handler to it<br /> 		file.add(exit);<br /> 		//exit.addActionListener(ex);<br /> 		//ends<br /> 		<br /> 		//adds a scroll bar to textarea<br /> 		JScrollPane scrollPane = new JScrollPane(textarea1);<br /> 		setPreferredSize(new Dimension(450, 110));<br /> 		add(scrollPane, BorderLayout.CENTER);<br /> <br /> }<br /> <br /> 	//this for a local insert of text<br /> 	private void insert(String grab, int i) {<br /> 				// TODO Auto-generated method stub<br /> 				textarea1.insert(grab, 1);<br /> 			}<br /> 	//end local<br /> <br /> 	public void add(Component stuff, Component stuff2, Component button1) {<br /> 		// TODO Auto-generated method stub<br /> 		textarea1.add( stuff );<br /> 		textarea1.add( stuff2 );<br /> 		textarea1.add( button1 );<br /> 	}<br /> 	<br /> 	public class Event implements ActionListener {  <br /> 		<br /> 		public void actionPerformed(ActionEvent op) { <br /> 		<br /> 				OpenBox ope = new OpenBox();<br /> <br /> 		}<br /> 	}<br /> <br /> 	public static void main(String[] args) {<br /> 		classA classes = new classA();<br /> 	}<br /> <br /> 	public void add(String str, String str2) {<br /> 		// TODO Auto-generated method stub<br /> 		textarea1.insert(str, 1);<br /> 		textarea1.insert(str2, 1);<br /> 	}<br /> <br /> 	//added to grab variables from OpenBox<br /> 	public void read(BufferedReader br, String strLine) throws IOException {<br /> 		// TODO Auto-generated method stub<br /> 		textarea1.read(br, strLine);<br /> 	}<br /> 	<br /> }<br /> [/code]<br /> <br /> Java class  OpenBox<br /> [code]<br /> public class OpenBox extends JFrame {<br /> <br /> 	public OpenBox() {<br /> 		<br /> 		super();<br /> 		<br /> 		classA textarea1 = new classA();<br /> 		<br /> 		//create function method to open a file, this opens a window pane to search for file<br /> 				String wd = System.getProperty(".");<br /> 		    	JFileChooser fc = new JFileChooser(wd);<br /> 		    	int rc = fc.showDialog(null, "Select Data File");<br /> 		    	if (rc == JFileChooser.APPROVE_OPTION)<br /> 		    	{<br /> 		    	File file = fc.getSelectedFile();<br /> 		    	String filename = file.getAbsolutePath();<br /> <br /> 		    	//This is the action we are performing when we select the file, it will print out in the console<br /> 		    	System.out.println(filename);<br /> 		    	try {<br /> 					FileInputStream fstream = new FileInputStream (file);<br /> 					DataInputStream in = new DataInputStream(fstream);<br /> 					BufferedReader br = new BufferedReader(new InputStreamReader(in));<br /> 					String strLine;<br /> 					while ((strLine = br.readLine()) != null) {<br /> 						System.out.println(strLine);<br /> 						<br /> 						//adds file output text to JTextArea<br /> 						FileOutputStream out = new FileOutputStream(strLine);<br /> 						textarea1.read(br, strLine);<br /> 						//ends file output text<br /> 					}<br /> 				} catch (FileNotFoundException e) {<br /> 					// TODO Auto-generated catch block<br /> 					e.printStackTrace();<br /> 				} catch (IOException e) {<br /> 					// TODO Auto-generated catch block<br /> 					e.printStackTrace();<br /> 				}<br /> 				<br /> 				//end<br /> 	}<br /> 	}<br /> 		<br /> 	/**<br /> 	 * @param args<br /> 	 * @param br <br /> 	 * @param strLine <br /> 	 * @param <br /> 	 * @param <br /> 	 * @throws IOException <br /> 	 */<br /> 	public static void main(String[] args) {<br /> 		// TODO Auto-generated method stub<br /> <br /> 	}<br /> <br /> }<br /> [/code]]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2913/4236.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2913/4236.page</link>
				<pubDate><![CDATA[Sun, 20 Nov 2011 05:45:25]]> GMT</pubDate>
				<author><![CDATA[ itgeek25]]></author>
			</item>
			<item>
				<title>Add Text from one class to another class</title>
				<description><![CDATA[ What I am trying to do is use a JTextArea from one class file in another class file for easy code administration. I am using it for a few different projects and my latests is to add a Open Dialog box and a Save as dialog box. Everything is working fine but getting or adding text to a JTextArea from another class file.<br /> <br /> I can get it to work fine if I keep everything in the same class file, but I really would like to split it up so it is easier  to read. Similar to a webpage with PHP include statements.<br /> <br /> This may seem like a simple question but I can't figure it out. I have looked all over the internet and still can't find an answer. I have tried many things and it's just not working. A little insight would be appreciated. Thanks in advance. Below is just a sample of what I am trying to do.<br /> <br /> I would like the JTextField to print the text from classB to the JTextArea in classA.<br /> <br /> The first file has this in it:<br /> <br /> import javax.swing.*;<br /> <br /> public class classA extends JFrame {<br /> 	<br /> 	JTextArea textarea1;<br /> <br /> 	public classA() {<br /> 		textarea1 = new JTextArea(5, 30);<br /> 		add(textarea1);<br /> 		setSize(200, 200);<br /> 		setVisible(true);<br /> }<br /> <br /> 	public static void main(String[] args) {<br /> 		classA classes = new classA();<br /> 	}<br /> }<br /> <br /> <br /> The second class file has this in it:<br /> <br /> import javax.swing.*;<br /> <br /> public class classB extends JFrame {<br /> 	<br /> 	public static void main(String[] args) {<br /> <br /> 		classA method = new classA();<br /> 		<br /> 		JTextField fields = new JTextField("Stuff");<br /> 		//trying to add this to the content of textarea1<br /> 		method.textarea1.add(fields);<br /> 	}<br /> }<br /> ]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2912/4232.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2912/4232.page</link>
				<pubDate><![CDATA[Fri, 18 Nov 2011 09:19:32]]> GMT</pubDate>
				<author><![CDATA[ itgeek25]]></author>
			</item>
			<item>
				<title>Hi new to java trying to do something new :) any help would be appreciated!</title>
				<description><![CDATA[ hi, I am trying to complete the following task (purely for fun) I would really appreciate it if someone could adapt my code:<br /> <br /> Write an a Java application which prints a diamond in a<br /> square grid of dots whose side length is input to the<br /> application. The side of the square must be an odd<br /> number. If the input data is invalid an error message is<br /> output. For example, if the input data was 10 then the<br /> error message<br /> Size (10) invalid must be odd<br /> would be printed. If the input data was -5 then the error<br /> message<br /> Sides of square must be positive<br /> would be printed<br /> <br /> Here is my code i have got:<br /> public class Stars<br /> {<br /> public static void main(String[] args)<br /> {<br /> System.out.println("Enter size of Diamond");<br /> <br /> System.out.println();<br /> int longestRow = BIO.getInt();<br /> <br /> for(int row=1 ; row&lt;=longestRow ; ++row)<br /> {<br /> int i = (2*row) - 1;<br /> if(i&gt;longestRow) i = 2*(longestRow-row+1) - 1;<br /> for(int j=0 ; j&lt;(longestRow-i)/2 ; ++j) System.out.print(&quot;.&quot;);<br /> for(int j=0 ; j<i ; ++j) System.out.print("*");><br /> for(int j=0 ; j&lt;(longestRow-i)/2 ; ++j) System.out.print(&quot;.&quot;);<br /> System.out.println();<br /> }<br /> }<br /> }<br /> <br /> this looks like this when ran:<br /> 5<br /> ..*..<br /> .***.<br /> *****<br /> .***.<br /> ..*..<br /> <br /> I am trying to make it look like this:<br /> ..*..<br /> .*.*.<br /> *...*<br /> .*.*.<br /> ..*..<br /> <br /> Thanks Gareth ]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2911/4229.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2911/4229.page</link>
				<pubDate><![CDATA[Thu, 17 Nov 2011 14:08:26]]> GMT</pubDate>
				<author><![CDATA[ garethnicoos]]></author>
			</item>
			<item>
				<title>Help, I have no idea what the console is telling me.</title>
				<description><![CDATA[ I'm using Windows XP and Java is up to date and all older versions are uninstalled, first off.<br /> <br /> I use a Java Based chat room and have been without issue for some time now and now when it tries to load, I get an error message and this in the console.<br /> <br /> <br /> 	load: class com.chatspace.v400320.Chat not found.<br /> java.lang.ClassNotFoundException: com.chatspace.v400320.Chat<br /> 	at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)<br /> 	at java.lang.ClassLoader.loadClass(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)<br /> 	at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)<br /> 	at java.lang.Thread.run(Unknown Source)<br /> Exception: java.lang.ClassNotFoundException: com.chatspace.v400320.Chat	<br /> <br /> <br /> <br /> Is this problem on my end or their end?]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2909/4226.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2909/4226.page</link>
				<pubDate><![CDATA[Tue, 15 Nov 2011 06:50:10]]> GMT</pubDate>
				<author><![CDATA[ Zack22]]></author>
			</item>
			<item>
				<title>Tic tac toe help</title>
				<description><![CDATA[ I am having issues with this code. First when I try to play it, the char (either X or O) doesn't show up, just squares do. Then secondly, I want to incorperate a grid like this<br /> <br /> 1 : 2 : 3<br /> --+--+--<br /> 4 : 5 : 6<br /> --+--+--<br /> 7 : 8 : 9<br /> <br /> please tell me what I need to do, thanks. - Newb]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2904/4214.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2904/4214.page</link>
				<pubDate><![CDATA[Fri, 28 Oct 2011 21:02:06]]> GMT</pubDate>
				<author><![CDATA[ hayden11]]></author>
			</item>
			<item>
				<title>Help Breaking down some java code</title>
				<description><![CDATA[ Hello, i am in need of some help to break down this code and to maybe tell me how it works. the code i am trying to work with /change is a skybox background of sorts. its a panorama background on a java client. i want to change it to a single background layer one image no movement. below is the code.<br /> <br /> [code]    private void func_35355_b(int i, int j, float f)<br />     {<br />         Tessellator tessellator = Tessellator.instance;<br />         GL11.glMatrixMode(5889 /*GL_PROJECTION*/);<br />         GL11.glPushMatrix();<br />         GL11.glLoadIdentity();<br />         GLU.gluPerspective(120F, 1.0F, 0.05F, 10F);<br />         GL11.glMatrixMode(5888 /*GL_MODELVIEW0_ARB*/);<br />         GL11.glPushMatrix();<br />         GL11.glLoadIdentity();<br />         GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);<br />         GL11.glRotatef(180F, 1.0F, 0.0F, 0.0F);<br />         GL11.glEnable(3042 /*GL_BLEND*/);<br />         GL11.glDisable(3008 /*GL_ALPHA_TEST*/);<br />         GL11.glDisable(2884 /*GL_CULL_FACE*/);<br />         GL11.glDepthMask(false);<br />         GL11.glBlendFunc(770, 771);<br />         int k = 8;<br />         for(int l = 0; l &lt; k * k; l++)<br />         {<br />             GL11.glPushMatrix();<br />             float f1 = ((float)(l % k) / (float)k - 0.5F) / 64F;<br />             float f2 = ((float)(l / k) / (float)k - 0.5F) / 64F;<br />             float f3 = 0.0F;<br />             GL11.glTranslatef(f1, f2, f3);<br />             GL11.glRotatef(MathHelper.sin(((float)field_35357_f + f) / 400F) * 25F + 20F, 1.0F, 0.0F, 0.0F);<br />             GL11.glRotatef(-((float)field_35357_f + f) * 0.1F, 0.0F, 1.0F, 0.0F);<br />             for(int i1 = 0; i1 &lt; 6; i1++)<br />             {<br />                 GL11.glPushMatrix();<br />                 if(i1 == 1)<br />                 {<br />                     GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);<br />                 }<br />                 if(i1 == 2)<br />                 {<br />                     GL11.glRotatef(180F, 0.0F, 1.0F, 0.0F);<br />                 }<br />                 if(i1 == 3)<br />                 {<br />                     GL11.glRotatef(-90F, 0.0F, 1.0F, 0.0F);<br />                 }<br />                 if(i1 == 4)<br />                 {<br />                     GL11.glRotatef(90F, 1.0F, 0.0F, 0.0F);<br />                 }<br />                 if(i1 == 5)<br />                 {<br />                     GL11.glRotatef(-90F, 1.0F, 0.0F, 0.0F);<br />                 }<br />                 GL11.glBindTexture(3553 /*GL_TEXTURE_2D*/, mc.renderEngine.getTexture((new StringBuilder()).append("/title/bg/panorama").append(i1).append(".png").toString()));<br />                 tessellator.startDrawingQuads();<br />                 tessellator.setColorRGBA_I(0xffffff, 255 / (l + 1));<br />                 float f4 = 0.0F;<br />                 tessellator.addVertexWithUV(-1D, -1D, 1.0D, 0.0F + f4, 0.0F + f4);<br />                 tessellator.addVertexWithUV(1.0D, -1D, 1.0D, 1.0F - f4, 0.0F + f4);<br />                 tessellator.addVertexWithUV(1.0D, 1.0D, 1.0D, 1.0F - f4, 1.0F - f4);<br />                 tessellator.addVertexWithUV(-1D, 1.0D, 1.0D, 0.0F + f4, 1.0F - f4);<br />                 tessellator.draw();<br />                 GL11.glPopMatrix();<br />             }<br /> <br />             GL11.glPopMatrix();<br />             GL11.glColorMask(true, true, true, false);<br />         }<br /> <br />         tessellator.setTranslationD(0.0D, 0.0D, 0.0D);<br />         GL11.glColorMask(true, true, true, true);<br />         GL11.glMatrixMode(5889 /*GL_PROJECTION*/);<br />         GL11.glPopMatrix();<br />         GL11.glMatrixMode(5888 /*GL_MODELVIEW0_ARB*/);<br />         GL11.glPopMatrix();<br />         GL11.glDepthMask(true);<br />         GL11.glEnable(2884 /*GL_CULL_FACE*/);<br />         GL11.glEnable(3008 /*GL_ALPHA_TEST*/);<br />         GL11.glEnable(2929 /*GL_DEPTH_TEST*/);<br />     }<br /> <br />     private void func_35354_a(float f)<br />     {<br />         GL11.glBindTexture(3553 /*GL_TEXTURE_2D*/, viewportTexture);<br />         GL11.glCopyTexSubImage2D(3553 /*GL_TEXTURE_2D*/, 0, 0, 0, 0, 0, 256, 256);<br />         GL11.glEnable(3042 /*GL_BLEND*/);<br />         GL11.glBlendFunc(770, 771);<br />         GL11.glColorMask(true, true, true, false);<br />         Tessellator tessellator = Tessellator.instance;<br />         tessellator.startDrawingQuads();<br />         byte byte0 = 3;<br />         for(int i = 0; i &lt; byte0; i++)<br />         {<br />             tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F / (float)(i + 1));<br />             int j = width;<br />             int k = height;<br />             float f1 = (float)(i - byte0 / 2) / 256F;<br />             tessellator.addVertexWithUV(j, k, zLevel, 0.0F + f1, 0.0D);<br />             tessellator.addVertexWithUV(j, 0.0D, zLevel, 1.0F + f1, 0.0D);<br />             tessellator.addVertexWithUV(0.0D, 0.0D, zLevel, 1.0F + f1, 1.0D);<br />             tessellator.addVertexWithUV(0.0D, k, zLevel, 0.0F + f1, 1.0D);<br />         }<br /> <br />         tessellator.draw();<br />         GL11.glColorMask(true, true, true, true);<br />     }<br /> <br />     private void func_35356_c(int i, int j, float f)<br />     {<br />         GL11.glViewport(0, 0, 256, 256);<br />         func_35355_b(i, j, f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         func_35354_a(f);<br />         GL11.glViewport(0, 0, mc.displayWidth, mc.displayHeight);<br />         Tessellator tessellator = Tessellator.instance;<br />         tessellator.startDrawingQuads();<br />         float f1 = width &lt;= height ? 120F / (float)height : 120F / (float)width;<br />         float f2 = ((float)height * f1) / 256F;<br />         float f3 = ((float)width * f1) / 256F;<br />         GL11.glTexParameteri(3553 /*GL_TEXTURE_2D*/, 10241 /*GL_TEXTURE_MIN_FILTER*/, 9729 /*GL_LINEAR*/);<br />         GL11.glTexParameteri(3553 /*GL_TEXTURE_2D*/, 10240 /*GL_TEXTURE_MAG_FILTER*/, 9729 /*GL_LINEAR*/);<br />         tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F);<br />         int k = width;<br />         int l = height;<br />         tessellator.addVertexWithUV(0.0D, l, zLevel, 0.5F - f2, 0.5F + f3);<br />         tessellator.addVertexWithUV(k, l, zLevel, 0.5F - f2, 0.5F - f3);<br />         tessellator.addVertexWithUV(k, 0.0D, zLevel, 0.5F + f2, 0.5F - f3);<br />         tessellator.addVertexWithUV(0.0D, 0.0D, zLevel, 0.5F + f2, 0.5F + f3);<br />         tessellator.draw();<br />     }[/code]<br /> <br /> Thanks in advance for any help you have to offer!!]]></description>
				<guid isPermaLink="true">http://forums.hotjoe.com/posts/preList/2901/4208.page</guid>
				<link>http://forums.hotjoe.com/posts/preList/2901/4208.page</link>
				<pubDate><![CDATA[Sun, 16 Oct 2011 16:22:59]]> GMT</pubDate>
				<author><![CDATA[ scoobz1234]]></author>
			</item>
	</channel>
</rss>
