1 2 3 4
a) Obj p = curScope.locals, last = null; ...
Java Linked list traversal, comp...
1 2 3 4
import javax.swing.JOptionPane; public class Rational { ...
Java Rational numbers - Problem :/
Hi,
I have a problem with ...
1 2 3 4
import java.util.ArrayList; import java.util.Random; ...
Java Problem with Permutation Class
Alright, so for out class, ...
1 2 3 4
//the code below is the class public class FactorGenerator ...
Java FactorGenerator Class &...
Hello, I am making a Factor...
1 2 3 4
/* * To change this template, choose Tools | Templates * and open the template in the editor. ...
Java Refactor my brute forcer!
Can you improve the speed o...
1 2 3 4
private void schematronTransformation() throws TransformerException { TransformerFactory tf = TransformerFactory.newInstance(); ...
Java Multiple XSLT for Schematro...
I want to validate some XML...
1 2 3 4
String className = file.getAbsolutePath(); /* TODO, replace this with regex is possible */ ...
Java replace with regex
Can this be refactored to u...
1 2 3 4
// FIELD private ArrayList<Item> owned = new ArrayList<Item>(); // in the Constructor I inizialize this field to null ...
Java java.lang.NullPointerException
why this.getOwned().add(ite...
1 2 3 4
public void draw() { switch(direction) ...
Java Snake Game Logic?
I'm having a lot of trouble...
1 2 3 4
public static String findsite(InputStream text) { String site, line = null; Boolean nospace = true; ...
Java speed up this horrendous co...
I don't know too much about...
1 2 3 4
public static Matrices add(Matrices a, Matrices b) { int rows = a.getRows(); ...
Java Conditional operator refact...
I want to modify this code ...
1 2 3 4
private final String DO_NOT_TRANSLATE_TAG = "skip"; /** ...
Java replace by tag
replaces value between two ...
1 2 3 4
public class Stats { public int HP; public int STR; ...
Java Stats
this is the most idiotic co...
1 2 3 4
package engine; import junit.framework.Assert; ...
Java Refactor, fix and optimize ...
While tuning the applicatio...
1 2 3 4
Sub Initialize Dim customername As String Dim servername As String ...
Java First LotusScript Agent
This agent reads a log and ...
1 2 3
public class ServicesRunner { ...
Java Separate thread logic from ...
The ServicesRunner start th...
1 2 3 4
import java.util.Scanner; public class Main { ...
Java ACSL Pinochle Intermediate ...
w00t
1 2 3 4
URL url = new URL("https://dev.psigate.com:7989/Messenger/XMLMessenger"); HttpURLConnection connection = (HttpURLConnection)url.openConnection(); connection.setDoInput(true); ...
Java PSiGate
This seems particularly egr...
1 2 3 4
grammar Expr; options { backtrack=true; ...
Java ANTLR / Java
This is a mix of ANTLR ( ht...
1 2 3 4
# Jhippo.java package Jhippo; ...
Java Jhippo
Java irc bot using Pircbot....
1 2 3 4
import java.io.BufferedOutputStream; import java.io.FileOutputStream; import java.io.IOException; ...
Java Read/download images from a...
Hi guys,
This code downloa...
1 2 3 4
/** This class generates all the factors of a number. */ ...
Java Factoring Integers
After taking all the factor...
I got this:
a) // see be...