我想问用JAVA编个小游戏在手机上试试,具体怎么弄呀?

解决方案 »

  1.   

    大家有人用过java调用extmail的userctl.pl脚本 往extmail中添加用户吗,我自己写了代码执行了 但是不会向extmail中插入数据.我的代码如下
    String comm = "perl /var/www/extsuite/extman/tools/userctl.pl--mod=add -username="+uname +"-password="+pass;
    runLinuxCmd(String cmd) //本类调用public String runLinuxCmd(String cmd) {
    BufferedReader bf = null;
    try {
    Process process = Runtime.getRuntime().exec(cmd);
    bf = new BufferedReader(new InputStreamReader(process.getInputStream()));
    String line = "";
    String resutl="";
    while ((line = bf.readLine()) != null) {
    resutl =resutl+ line.trim()+"\n";
    }
    System.out.println("---------------try result------------------"+resutl);
    return resutl;
    } catch (java.io.IOException e) {
    e.printStackTrace();
    System.out.println("------------error--------------");
    return null;
    } finally {
    if (bf != null) {
    try {
    bf.close();
    bf = null;
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    }
    }}单独在shell环境下执行perl命令是没有问题,能够插入数据。 我在网上看到有人讲过把perl命令写进sh脚本就可以了,我也不知道这是为什么按理说java能够调用shell命令也能调用perl脚本命令。非要包装一下的话我也写了一个shell脚本单独运行shell脚本也能添加数据就是java调用又没有添加数据了 我想要的是验证过的结果 大道理就不用讲了直接来真工夫啊 我写的shell脚本代码如下:#!/bin/sh
    perl /var/www/extsuite/extman/tools/userctl.pl--mod=add -username="$1" -password="$2";这个做了两天都没有做好 如果能有满意的结果我会加分的谢谢大家 欢迎大家来这里回帖http://topic.csdn.net/u/20110821/20/ae1e4815-1c81-4c75-88ae-db263128f963.html?61772
      

  2.   

    这是个配置android开发环境的说明,可以上电驴搜《Android开发从零开始》ADT安装出错,是因为缺少一些Eclipse组件,解决方案为根据错误提示,添加相应组件。在Eclipse的菜单栏Help->Install New Software中添加所需组件,安装ADT时需要自动安装依赖的组件:Eclipse GEF      - http://download.eclipse.org/tools/gef/updates/releases/
    Eclipse EMF      - http://download.eclipse.org/modeling/emf/updates/releases/
    Eclipse GMF      - http://download.eclipse.org/modeling/gmf/updates/releases
    Eclipse Webtools - http://download.eclipse.org/webtools/updates/
    Google eclipse Plugin - http://dl.google.com/eclipse/plugin/3.5--------------------------------------------------------添加完后,安装ADT,需要选择Contact all update sites during install to find required software,Eclipse就会自己下载所需要的组件。ADT 地址http://dl-ssl.google.com/Android/eclipse/
      

  3.   

    写个游戏可没那么简单!从 Android SDK sample 的 TicTacToe,也就是我们所说的井字棋开始吧。
      

  4.   

    至少先在Eclipse里把安卓平台搭好
      

  5.   

    按教程整好环境,游戏可以参照sdk中sample中的范例改改就行了。自己写也可以。