在Java中,要计算一个百分比并保留整数部分,你可以使用以下方法:

public class PercentageCalculator {

    public static void main(String[] args) {
        // 示例值
        double value = 78.9;
        double total = 100.0;

        // 计算百分比
        double percentage = (value / total) * 100;

        // 保留整数部分
        int percentageInt = (int) Math.floor(percentage);

        System.out.println("百分比(保留整数): " + percentageInt + "%");
    }
}

这段代码首先计算了valuetotal的百分比,然后使用Math.floor()方法将得到的小数向下取整,最后转换为int类型以保留整数部分。这样就可以得到百分比的整数部分了。