Monthly Archives: January 2012

How to make live broadcast over youtube ?

and you can have a JW Player skinned and pointed out to your youtube channel

Posted in Uncategorized | Comments Off on How to make live broadcast over youtube ?

run linux command from java and reading result?

import java.*; class Test { public static void main(String[] args) { int ch; try { Process myProcess = Runtime.getRuntime().exec(“ls -al”); InputStreamReader myIStreamReader = new InputStreamReader(myProcess.getInputStream()); while ((ch = myIStreamReader.read()) != -1) { System.out.print((char) ch); } } catch (IOException anIOException) { … Continue reading

Posted in java, mysql | Comments Off on run linux command from java and reading result?