当前位置: 首页 > 知识库问答 >
问题:

如何编译AndroidScreenCast?(几个错误)

黄宏毅
2023-03-14

自述文件

Android Screencast
Homepage : http://code.google.com/p/androidscreencast/

***********************
HOW TO BUILD THE PROJET
***********************

Copy file "andrdoiscreencast.conf.example" to parent folder.
Rename it to "androidscreencast.conf".
Use your text editor to tune the configuration
Launch ant (with target dist or jnpl).
// The tag added to produced jar (androidscreencast-xxxx.jar)
version=DEV

// The location of your android sdk installation
android.sdk=/a/b/c/android-sdk-linux_x86-1.5_r3

// JAR signing for jnlp startup
sign.keystore=../my_keystore
sign.storepass=xxx
sign.keypass=yyy
sign.alias=zzz

// for auto deployement to google code "downloads" section
gc.username=aaa@gmail.com
gc.password=www
ant -v -f AndroidScreencast/build.xml

init:[mkdir]跳过/home/euphoria/androidscreencast/androidscreencast/bin,因为它已经存在。

BUILD FAILED/home/euphoria/androidscreencast/androidscreencast/BUILD.xml:26:编译失败;有关详细信息,请参阅编译器错误输出。在org.apache.tools.ant.taskdefs.javac.compile(javac.java:1174)在org.apache.tools.ant.taskdefs.javac.execute(javac.java:930)在org.apache.tools.ant.unknownelement.execute(unknownelement.java:292)在org.apache.tools.ant.unknownelement.execute(unknownelement.java:292)在ts(project.java:1248)在org.apache.tools.ant.main.runbuild(main.java:851)在org.apache.tools.ant.main.startant(main.java:235)在org.apache.tools.ant.launch.launcher.run(launcher.java:280)在org.apache.tools.ant.launch.launcher.main(launcher.java:109)`

总时间:7秒

发射ant(带有目标dist或jnpl)意味着什么?

共有1个答案

容宏逸
2023-03-14

由于以下错误,您根本无法运行此项目:-

java.io.FileNotFoundException: androidscreencast (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.Main.launchApp(Unknown Source)
at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
at com.sun.javaws.Main.access$000(Unknown Source)
at com.sun.javaws.Main$1.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

谢谢!

 类似资料:
  • androidscreencast 是一个用 Java 编写的桌面应用,用来通过鼠标和键盘远程控制 Android 设备。 使用java web start技术,因此可以通过浏览器直接使用。 左边是程序录制的界面,右边是视频播放的界面。效果不错。   使用很简单: 首先要确保机器上安装了java sdk; 然后,将android手机通过usb连接到计算机上 运行adb devices命令,并且看到

  • 我正在反编译一个谷歌chrome扩展,因为它看起来很可疑。扩展是用javascript编写的,但有人能告诉我像这样的符号到底是什么,以及如何将它们“翻译”回正常的字符串吗? “\x63\x68\x61\x72\x43\x6F\x64\x65” 完整文件的Jsbin:http://Jsbin.com/onevira/1/

  • 我无法在GWT中编译为js。 devmode一如既往地运行良好。我在编译器之间做了很多更改,所以不知道确切的位置。 什么可以解决这个问题? [gwt 2.5 AE 1.7.1] java.lang.RuntimeException:com.google.gwt.dev.javac.ComilationUnit.getTypes(CompilationUnit.java:324)的com.goole

  • 问题内容: 我已经搜索过了,但是找不到或无法理解。 现在我不是Java程序员,但是我需要将一个Java文件编译成一个现有的(已编译的)Java程序。该Java代码的源代码对我 不可 用,因此我无法编译整个项目。 我对反编译原始项目不感兴趣。 如何仅使用JDK和javac快速完成此操作?(通过命令行是我的首选。) 我知道这样做必须禁用单个java文件外部的错误检查,因为它无法读取依赖项。 在此先感谢

  • 主要内容:1) 源文件(Source File),2) 工程/项目(Project),3) 工程类型/项目类型,4) 链接(Link)上节我们介绍了编译器和 IDE 的概念,大家肯定希望赶紧实践一下,用 IDE 真正地运行一段C语言代码来看看效果,这样能够更快地获得成就感。 但是,使用 IDE 的过程中会涉及到一些与编程有关的概念,这些概念如果不提前了解,即使能够运行出程序来,也是雾里看花,知其然不知其所以然。本节的目标就是让大家对这些概念有一个简单的了解。 1) 源文件(Source File