這篇來介紹如何使用
Environment:
OS: Ubuntu 11.10 64 bits
IDE: Eclipse Indigo Service Release 1 Java EE 64bits
OSGi Framework: Knopflerfish 3.2.0
*** Unable to find the ncurses libraries or the *** required header files. *** ‘make menuconfig’ requires the ncurses libraries. *** *** Install ncurses (ncurses-devel) and try again. ===========================================只要乖乖安裝就好了
public MyBinderClass mBinder=new MyBinderClass(); @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return mBinder; }
$vlc -vvv qq.mp4 --sout '#rtp{dst=192.168.0.209,port=1234,sdp=rtsp://192.168.0.209:8080/test.mp4}'On Client:
#vlc rtsp://192.168.0.209:8080/test.mp4
#include=============================================#include int main() { FILE *fp=fopen("/home/diousk/test/aaa","r+"); char str[20]; fscanf(fp,"%s",str); printf("\nthe content is %s\n",str); rewind(fp); fprintf(fp,"%d",atoi(str)+1); fclose(fp); return 0; }