Example usage for java.util Calendar getWeekYear

List of usage examples for java.util Calendar getWeekYear

Introduction

In this page you can find the example usage for java.util Calendar getWeekYear.

Prototype

public int getWeekYear() 

Source Link

Document

Returns the week year represented by this Calendar .

Usage

From source file:Main.java

public static void main(String[] args) {

    Calendar now = Calendar.getInstance();

    System.out.print(now.getWeekYear());
}