Search:
Type: Posts; User: vinny619
Search :
Search took 0.01 seconds.
Hi,
I am working on a custom server launcher, that will download all server files to a folder in appdata, then I want to run the server within a panel in my application, is this possible... Here is...
Hey,
I have a JAVA app that loads my social networking website, and what I am trying to achieve is using a JAVA applet built into the website with a "Start Party" button, then when the party has...
thanks for your help, I actually changed the code a bit, then added toString() to the loaded parts, and its working now
this is the final code
UUID id = new UUID();
String...
I am using NETBEANS and this is all that is in the output when I run the application
run:
log4j:WARN No appenders could be found for logger (com.jniwrapper.DefaultLibraryLoader).
log4j:WARN...
Well thanks for the help, I think from now on I will go find a better community of people who will happily help with simple problems like this
I am having a problem reading a file, I have permission to do so as I can create and write to the file
static public String getContents(File aFile) {
StringBuilder contents = new...
Hi, I am writing a java application that loads my website in a Safari JxBrowser component, unforunatly it wont work, this is the error I get
Exception in thread "main"...
I may even consider flash (.flv) but I don't want a video player that is watermarked with someone elses logo, I would want my own
Hi,
I am making my own personal video upload website, and have got a jQuery upload for copying the file to my server, but I need to convert it to mp4 so that it will play in html5's video...
here is my Code so far:
package in.ntwk.forgeworld;
import java.awt.*;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import...
Turns out I forgot to give it permission in the AndroidManifest.xml, lol
Ok it is still failing, it is returning "java.net.SocketException: Permission Denied"
with the following code
public static String getCode(String code) {
StringBuffer result = new...
Hi, I am making a personal barcode reader that will store data to my website, but I am having trouble with the following code...
public static String getCode(String code) {
StringBuffer...
or not, sorry I didn't read the full post :S my bad
looks like you got it working...
got it, not sure if its perfect, but it works for any youtube link, including "youtu.be" links
...
this is what I have so far:
/(http:\/\/www\.youtube\.com\/watch\?v\=[a-zA-Z0-9]+)/
which gets http://www.youtube.com?v=abcABC123
but if the link is...
Hi, I amtrying to create a function that gets spotify URI links from a string, but I cannot seem to get it working
here is my code so far:
function spotiRender($string) {
$spotify =...
so how does facebook and google do it then for their "likes" and "+1/circles" buttons...
thats odd as it works if i use:
success: function(data) {
$("#test").html( $('user ' + t, data).first().text() );
}
but I don't want to write it to an element, I want to write it to a...
Hi, I am trying to make a function that will return part of some xml data, but It keeps returning "Undefined"
here is the function, with the call:
function getUserInfo(u, t) {
$.ajax({...
Hi I am trying to get the gifference between strings using "google-diff-match-patch",
but I cant get it return the changed text
here is my function:
function getDiffs(a, b) {
a =...
Hi, I am developing a website for a client and he asked me to add in a custom scrollbar... when he first asked this I thought "SH*T, how am I going to do that"...
The problem I am having is that...