public class A
{
   public static byte[] aa(byte binaryData[])
{
   return  binaryData//具体省略
} public static void main(string[] args)
{
byte ss[] = {'A','b'}
Base64 BB = new Base64();
 System.out.println(BB.decodeBase64(base64Data));
}
}
请问这个main函数有什么问题?

解决方案 »

  1.   

    public class Base64{
       public static byte[] decodeBase64(byte binaryData[])
    {
       return  binaryData//具体省略
    }
      

  2.   

    有点小问题byte ss[] = {'A','b'} 后没“;”
      

  3.   

    提示这个是什么意思?cannot resolve symbol
    symbol  : class string 
    location: class Base64
    public static void main(string[] args)
      

  4.   

    还有当生成Base64.class后怎么运行?
      

  5.   


    大小写错误,是:String春天在这里!!!
      

  6.   


    大小写错误,是:String
    楼主加班太累了!
      

  7.   


    大小写错误,是:String
    楼主加班太累了!早点休息吧。!!
      

  8.   

    String[] args    String貌试要大写
      

  9.   

    string[] 该成String[]
    byte ss[] = {'A','b'} 后面加个;就发现这两处