如何在java

时间:2016-08-03 01:36:10

标签: java

实际上我有一个boolen变量'布尔状态'如果它将返回true我需要将1存储到db中,否则0将存储如何在java中将int值更改为boolean请帮帮我..

布尔状态= 1; customerTl.setStatus();

3 个答案:

答案 0 :(得分:0)

public interface BlockCipher64 {
long encrypt(long block);
long decrypt(long block);

public static byte[] longToBytes(long l) {
    byte[] result = new byte[8];
    for (int i = 7; i >= 0; i--) {
        result[i] = (byte) l;
        l >>= 8;
    }
    return result;
}

public static long bytesToLong(byte[] b) {
    long result = 0;
    for (int i = 0; i < 8; i++) {
        result <<= 8;
        result |= ((long) b[i]) & 0xffL; // notice the L
    }
    return result;
}
}

只需在您的数据库中存储numberToStore即可。

答案 1 :(得分:0)

假设您有一个变量,它将保存您要放入数据库的1或0。您可以通过执行以下操作来设置它:

ng-hide

这相当于

boolean status = 0
int dbval = status ? 1 : 0;

希望这有助于:)

答案 2 :(得分:-1)

不要认为你必须在这里将int更改为boolean。

if(status){#insert 1 into db}
else{#insert 0 into db}

如果不理解1和0而不必将int更改为boolean。