令牌“;”上的语法错误,{此标记后的预期

时间:2009-11-18 11:04:43

标签: java eclipse

为什么这一行会出现语法错误(如下所示)

package org.temp2.cod1;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.io.*;

public class Code1 {

    byte[] plaintext = new byte[32];   // <<<<<<<<<<<<<<<<<<<<<<<<<< syntax error
    for (int i = 0; i < 32; i++) {
      plaintext[i] = (byte) (i % 16);
    }

    byte[] key = new byte[16];
    SecureRandom r = new SecureRandom();
    r.nextBytes(key);

    Cipher c = Cipher.getInstance("AES");
    SecretKeySpec k =  new SecretKeySpec(key, "AES");
    c.init(Cipher.ENCRYPT_MODE, k);
    byte[] encryptedData = c.doFinal(plaintext);
}
}

2 个答案:

答案 0 :(得分:14)

你的代码应该在方法中。在我看来,您已跳过public void method(..) {

答案 1 :(得分:13)

您忘记了入口点方法声明。尝试添加:

public static void main(String[] args) {

在您收到错误的行之前。