मैं जावा में स्थानीय महीने के नाम से एक इंटेगर कैसे बदल सकता हूं?


99

मुझे एक पूर्णांक मिलता है और मुझे विभिन्न स्थानों में एक महीने के नाम बदलने की आवश्यकता है:

लोकेल एन-यू के लिए उदाहरण:
1 ->
2 जनवरी -> फरवरी

लोकेल es-mx के लिए उदाहरण:
1 -> Enero
2 -> Febrero


5
देखो, जावा महीने शून्य-आधारित हैं इसलिए 0 = जनवरी, 1 = फ़रवरी, आदि
निक होल

आप सही हैं, इसलिए यदि भाषा को बदलने की जरूरत है, तो बस लोकेल को बदलने की जरूरत है। धन्यवाद
atomsfat

2
@ नैकहॉल अद्यतन अद्यतन आधुनिक एनम java.timeMonthएक-आधारित है: 1-12 जनवरी-दिसंबर के लिए। Ditto के लिए [ java.time.DayOfWeek](https://docs.oracle.com/javase/9/docs/api/java/time/DayOfWeek.html): 1-7 for Monday-Sunday per ISO 8601 standard. Only the troublesome old legacy date-time classes such as Calendar` में पागल नंबरिंग योजनाएं हैं। विरासत वर्गों से बचने के कई कारणों में से एक, अब पूरी तरह से java.time कक्षाओं द्वारा पूरी तरह से दबाया गया है
तुलसी बोर्के

जवाबों:


211
import java.text.DateFormatSymbols;
public String getMonth(int month) {
    return new DateFormatSymbols().getMonths()[month-1];
}

12
क्या आपको 'माह -1' की आवश्यकता नहीं है, क्योंकि सरणी शून्य आधारित है? atomsfat 1 -> जनवरी आदि चाहता है
ब्रायन एग्न्यू

7
उसे महीने -1 की जरूरत है, क्योंकि महीना 1-आधारित महीना नंबर है जिसे शून्य-आधारित सरणी स्थिति में परिवर्तित करने की आवश्यकता है
सैम बार्नम

5
सार्वजनिक स्ट्रिंग getMonth (इंट माह, लोकेल लोकेल) {वापसी DateFormatSymbols.getInstance (locale) .getMonths () [माह -1]; }
परमाणु

4
उसे जरूरत है month-1। किसी और का उपयोग करने Calendar.get(Calendar.MONTH)की आवश्यकता होगीmonth
रॉन

1
DateFormatSymbols कार्यान्वयन को JDK 8 में बदल दिया गया था, इसलिए getMonths विधि सभी लोकेल के अब के लिए सही मान नहीं
लौटाती

33

आपको स्टैंड-अलोन महीने के नामों के लिए LLLL का उपयोग करने की आवश्यकता है। यह प्रलेखन में SimpleDateFormatप्रलेखित है, जैसे:

SimpleDateFormat dateFormat = new SimpleDateFormat( "LLLL", Locale.getDefault() );
dateFormat.format( date );

JDK 1.7 /IllegalArgumentException : Illegal pattern character 'L'
AntJavaDev

26

tl; डॉ

Month                             // Enum class, predefining and naming a dozen objects, one for each month of the year. 
.of( 12 )                         // Retrieving one of the enum objects by number, 1-12. 
.getDisplayName(
    TextStyle.FULL_STANDALONE , 
    Locale.CANADA_FRENCH          // Locale determines the human language and cultural norms used in localizing. 
)

java.time

चूंकि जावा 1.8 (या थ्री-बैकपोर्ट के साथ 1.7 और 1.6 ) आप इसका उपयोग कर सकते हैं:

Month.of(integerMonth).getDisplayName(TextStyle.FULL_STANDALONE, locale);

ध्यान दें कि integerMonth1-आधारित है, अर्थात 1 जनवरी के लिए है। रेंज हमेशा जनवरी-दिसंबर (केवल ग्रेगोरियन कैलेंडर के लिए) 1 से 12 तक होती है।


मान लीजिए कि आपके द्वारा पोस्ट की गई विधि का उपयोग करके फ्रेंच में मई का स्ट्रिंग महीना है (मई फ्रेंच में माई है), मैं इस स्ट्रिंग से नंबर 5 कैसे प्राप्त कर सकता हूं ??
usertest

@usertest मैंने अपने उत्तरMonthDelocalizer में एक गुज़रे हुए स्थानीय महीने के नाम स्ट्रिंग से एक वस्तु प्राप्त करने के लिए एक रफ-ड्राफ्ट क्लास लिखा : → Month.MAY। ध्यान दें कि केस-सेंसिटिविटी मायने रखती है: फ्रेंच में, अमान्य है और होना चाहिए । MonthmaiMaimai
तुलसी बोर्के

यह 2019 है। यह शीर्ष उत्तर कैसे नहीं है?
दूसरा

16

मैं SimpleDateFormat का उपयोग करेगा। किसी ने मुझे सही किया अगर एक कैलेंडर कैलेंडर बनाने का एक आसान तरीका है, हालांकि, मैं अब कोड में ऐसा करता हूं और मुझे यकीन नहीं है।

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.GregorianCalendar;


public String formatMonth(int month, Locale locale) {
    DateFormat formatter = new SimpleDateFormat("MMMM", locale);
    GregorianCalendar calendar = new GregorianCalendar();
    calendar.set(Calendar.DAY_OF_MONTH, 1);
    calendar.set(Calendar.MONTH, month-1);
    return formatter.format(calendar.getTime());
}

ये भयानक वर्ग अब विरासत हैं, जिसे पूरी तरह से आधुनिक java.time वर्गों द्वारा JSR 310 में परिभाषित किया गया है।
तुलसी

14

यहां बताया गया है कि मैं यह कैसे करूंगा। मैं आपके int monthऊपर रेंज चेकिंग छोड़ दूंगा ।

import java.text.DateFormatSymbols;

public String formatMonth(int month, Locale locale) {
    DateFormatSymbols symbols = new DateFormatSymbols(locale);
    String[] monthNames = symbols.getMonths();
    return monthNames[month - 1];
}

12

SimpleDateFormat का उपयोग करना।

import java.text.SimpleDateFormat;

public String formatMonth(String month) {
    SimpleDateFormat monthParse = new SimpleDateFormat("MM");
    SimpleDateFormat monthDisplay = new SimpleDateFormat("MMMM");
    return monthDisplay.format(monthParse.parse(month));
}


formatMonth("2"); 

परिणाम: फरवरी


7

जाहिरा तौर पर Android 2.2 में SimpleDateFormat के साथ एक बग है।

महीने के नामों का उपयोग करने के लिए आपको उन्हें अपने संसाधनों में स्वयं को परिभाषित करना होगा:

<string-array name="month_names">
    <item>January</item>
    <item>February</item>
    <item>March</item>
    <item>April</item>
    <item>May</item>
    <item>June</item>
    <item>July</item>
    <item>August</item>
    <item>September</item>
    <item>October</item>
    <item>November</item>
    <item>December</item>
</string-array>

और फिर उन्हें अपने कोड में इस तरह से उपयोग करें:

/**
 * Get the month name of a Date. e.g. January for the Date 2011-01-01
 * 
 * @param date
 * @return e.g. "January"
 */
public static String getMonthName(Context context, Date date) {

    /*
     * Android 2.2 has a bug in SimpleDateFormat. Can't use "MMMM" for
     * getting the Month name for the given Locale. Thus relying on own
     * values from string resources
     */

    String result = "";

    Calendar cal = Calendar.getInstance();
    cal.setTime(date);
    int month = cal.get(Calendar.MONTH);

    try {
        result = context.getResources().getStringArray(R.array.month_names)[month];
    } catch (ArrayIndexOutOfBoundsException e) {
        result = Integer.toString(month);
    }

    return result;
}

"एंड्रॉइड 2.2 में स्पष्ट रूप से एक बग है" - यह उपयोगी होगा यदि आप उस स्थान से लिंक कर सकते हैं जहां बग को ट्रैक किया गया है।
पीटर हॉल

6

tl; डॉ

Month.of( yourMonthNumber )           // Represent a month by its number, 1-12 for January-December. 
  .getDisplayName(                    // Generate text of the name of the month automatically localized. 
      TextStyle.SHORT_STANDALONE ,    // Specify how long or abbreviated the name of month should be.
      new Locale( "es" , "MX" )       // Locale determines (a) the human language used in translation, and (b) the cultural norms used in deciding issues of abbreviation, capitalization, punctuation, and so on.
  )                                   // Returns a String.

java.time.Month

अब बहुत आसान है java.time क्लासेस में जो इन तकलीफदेह पुरानी विरासत तारीख-समय की कक्षाओं को दबा देती है।

MonthEnum एक दर्जन से अधिक वस्तुओं, प्रत्येक माह के लिए एक परिभाषित करता है।

जनवरी-दिसंबर के लिए महीने 1-12 नंबर हैं।

Month month = Month.of( 2 );  // 2 → February.

ऑब्जेक्ट का नाम पूछें , महीने के नाम का एक स्ट्रिंग , स्वचालित रूप से स्थानीयकृत

यह TextStyleनिर्दिष्ट करने के लिए समायोजित करें कि आप कितने समय या संक्षिप्त नाम चाहते हैं। ध्यान दें कि कुछ भाषाओं में (अंग्रेजी में नहीं) महीने का नाम भिन्न होता है यदि अकेले या पूर्ण तिथि के भाग के रूप में उपयोग किया जाता है। इसलिए प्रत्येक पाठ शैली का एक …_STANDALONEसंस्करण है।

Localeनिर्धारित करने के लिए एक निर्दिष्ट करें :

  • अनुवाद में किस मानव भाषा का उपयोग किया जाना चाहिए।
  • क्या सांस्कृतिक मानदंडों को संक्षिप्त नाम, विराम चिह्न और पूंजीकरण जैसे मुद्दों को तय करना चाहिए।

उदाहरण:

Locale l = new Locale( "es" , "MX" );
String output = Month.FEBRUARY.getDisplayName( TextStyle.SHORT_STANDALONE , l );  // Or Locale.US, Locale.CANADA_FRENCH. 

नाम → Monthवस्तु

FYI करें, दूसरी दिशा में जाना (एक Monthएनम ऑब्जेक्ट प्राप्त करने के लिए एक महीने के स्ट्रिंग को पार्स करना ) अंतर्निहित नहीं है। आप ऐसा करने के लिए अपनी कक्षा लिख ​​सकते हैं। ऐसी कक्षा में मेरा त्वरित प्रयास है। अपने जोखिम पार इस्तेमाल करें । मैंने इस कोड को न तो कोई गंभीर सोचा और न ही कोई गंभीर परीक्षण दिया।

उपयोग।

Month m = MonthDelocalizer.of( Locale.CANADA_FRENCH ).parse( "janvier" ) ;  // Month.JANUARY

कोड।

package com.basilbourque.example;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.time.Month;
import java.time.format.TextStyle;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

// For a given name of month in some language, determine the matching `java.time.Month` enum object.
// This class is the opposite of `Month.getDisplayName` which generates a localized string for a given `Month` object.
// Usage… MonthDelocalizer.of( Locale.CANADA_FRENCH ).parse( "janvier" ) → Month.JANUARY
// Assumes `FormatStyle.FULL`, for names without abbreviation.
// About `java.time.Month` enum: https://docs.oracle.com/javase/9/docs/api/java/time/Month.html
// USE AT YOUR OWN RISK. Provided without guarantee or warranty. No serious testing or code review was performed.
public class MonthDelocalizer
{
    @NotNull
    private Locale locale;

    @NotNull
    private List < String > monthNames, monthNamesStandalone; // Some languages use an alternate spelling for a “standalone” month name used without the context of a date.

    // Constructor. Private, for static factory method.
    private MonthDelocalizer ( @NotNull Locale locale )
    {
        this.locale = locale;

        // Populate the pair of arrays, each having the translated month names.
        int countMonthsInYear = 12; // Twelve months in the year.
        this.monthNames = new ArrayList <>( countMonthsInYear );
        this.monthNamesStandalone = new ArrayList <>( countMonthsInYear );

        for ( int i = 1 ; i <= countMonthsInYear ; i++ )
        {
            this.monthNames.add( Month.of( i ).getDisplayName( TextStyle.FULL , this.locale ) );
            this.monthNamesStandalone.add( Month.of( i ).getDisplayName( TextStyle.FULL_STANDALONE , this.locale ) );
        }
//        System.out.println( this.monthNames );
//        System.out.println( this.monthNamesStandalone );
    }

    // Constructor. Private, for static factory method.
    // Personally, I think it unwise to default implicitly to a `Locale`. But I included this in case you disagree with me, and to follow the lead of the *java.time* classes. --Basil Bourque
    private MonthDelocalizer ( )
    {
        this( Locale.getDefault() );
    }

    // static factory method, instead of  constructors.
    // See article by Dr. Joshua Bloch. http://www.informit.com/articles/article.aspx?p=1216151
    // The `Locale` argument determines the human language and cultural norms used in de-localizing input strings.
    synchronized static public MonthDelocalizer of ( @NotNull Locale localeArg )
    {
        MonthDelocalizer x = new MonthDelocalizer( localeArg ); // This class could be optimized by caching this object.
        return x;
    }

    // Attempt to translate the name of a month to look-up a matching `Month` enum object.
    // Returns NULL if the passed String value is not found to be a valid name of month for the human language and cultural norms of the `Locale` specified when constructing this parent object, `MonthDelocalizer`.
    @Nullable
    public Month parse ( @NotNull String input )
    {
        int index = this.monthNames.indexOf( input );
        if ( - 1 == index )
        { // If no hit in the contextual names, try the standalone names.
            index = this.monthNamesStandalone.indexOf( input );
        }
        int ordinal = ( index + 1 );
        Month m = ( ordinal > 0 ) ? Month.of( ordinal ) : null;  // If we have a hit, determine the `Month` enum object. Else return null.
        if ( null == m )
        {
            throw new java.lang.IllegalArgumentException( "The passed month name: ‘" + input + "’ is not valid for locale: " + this.locale.toString() );
        }
        return m;
    }

    // `Object` class overrides.

    @Override
    public boolean equals ( Object o )
    {
        if ( this == o ) return true;
        if ( o == null || getClass() != o.getClass() ) return false;

        MonthDelocalizer that = ( MonthDelocalizer ) o;

        return locale.equals( that.locale );
    }

    @Override
    public int hashCode ( )
    {
        return locale.hashCode();
    }

    public static void main ( String[] args )
    {
        // Usage example:
        MonthDelocalizer monthDelocJapan = MonthDelocalizer.of( Locale.JAPAN );
        try
        {
            Month m = monthDelocJapan.parse( "pink elephant" ); // Invalid input.
        } catch ( IllegalArgumentException e )
        {
            // … handle error
            System.out.println( "ERROR: " + e.getLocalizedMessage() );
        }

        // Ignore exception. (not recommended)
        if ( MonthDelocalizer.of( Locale.CANADA_FRENCH ).parse( "janvier" ).equals( Month.JANUARY ) )
        {
            System.out.println( "GOOD - In locale "+Locale.CANADA_FRENCH+", the input ‘janvier’ parses to Month.JANUARY." );
        }
    }
}

जावा के बारे में

Java.time ढांचे जावा 8 और बाद में बनाया गया है। इन कक्षाओं परेशानी वर्ष प्रतिस्थापित विरासत जैसे तिथि-समय कक्षाएं java.util.Date, Calendar, और SimpleDateFormat

Joda समय परियोजना, अब में रखरखाव मोड , प्रवास करने की सलाह देता java.time कक्षाएं।

अधिक जानने के लिए, Oracle ट्यूटोरियल देखें । और कई उदाहरणों और स्पष्टीकरणों के लिए ढेर अतिप्रवाह खोजें। विशिष्टता JSR 310 है

आप अपने डेटाबेस से सीधे java.time वस्तुओं का आदान-प्रदान कर सकते हैं । JDBC 4.2 या उसके बाद वाले JDBC ड्राइवर का अनुपालन करें । तार की कोई जरूरत नहीं, कक्षाओं की कोई जरूरत नहीं ।java.sql.*

Java.time कक्षाएं कहाँ से प्राप्त करें?

ThreeTen-अतिरिक्त परियोजना अतिरिक्त कक्षाओं के साथ java.time फैली हुई है। यह परियोजना java.time के संभावित भविष्य के अतिरिक्त के लिए एक साबित जमीन है। आप यहाँ कुछ उपयोगी वर्गों जैसे मिल सकता है Interval, YearWeek, YearQuarter, और अधिक


1

एक समस्या है जब आप DateFormatSymbols वर्ग को उसके GetMonthName विधि के लिए उपयोग करते हैं, तो इसे कुछ Android उपकरणों में महीना द्वारा महीना दिखाने के नाम से महीना प्राप्त करने के लिए। मैंने इस तरह से इस मुद्दे को हल किया है:

String_array.xml में

<string-array name="year_month_name">
    <item>January</item>
    <item>February</item>
    <item>March</item>
    <item>April</item>
    <item>May</item>
    <item>June</item>
    <item>July</item>
    <item>August</item>
    <item>September</item>
    <item>October</item>
    <item>November</item>
    <item>December</item>
    </string-array>

जावा वर्ग में इस तरह से इस सरणी को कॉल करें:

public String[] getYearMonthName() {
        return getResources().getStringArray(R.array.year_month_names);
        //or like 
       //return cntx.getResources().getStringArray(R.array.month_names);
    } 

      String[] months = getYearMonthName(); 
           if (i < months.length) {
            monthShow.setMonthName(months[i] + " " + year);

            }

हैप्पी कोडिंग :)


1

कोटलिन एक्सटेंशन

fun Int.toMonthName(): String {
    return DateFormatSymbols().months[this]
}

प्रयोग

calendar.get(Calendar.MONTH).toMonthName()

जेएसआर 310 में परिभाषित java.time कक्षाओं Calendarद्वारा वर्षों पहले भयानक वर्ग का दमन किया गया था।
बेसिल

0
    public static void main(String[] args) {
    SimpleDateFormat format = new SimpleDateFormat("MMMMM", new Locale("en", "US"));
    System.out.println(format.format(new Date()));
}

यह उचित उत्तर की तरह दिखता है, लेकिन क्या आप समझा सकते हैं कि आप क्या करते हैं और आप इसे इस तरह क्यों करते हैं?
मार्टिन फ्रैंक

मैं इस तरह से करता हूं क्योंकि मुझे लगता है कि सरल और जटिल नहीं है!
दिओगो ओलिवेरा

यह कुख्यात परेशानी और लंबे समय तक पुराने SimpleDateFormatवर्ग का उपयोग करता है ।
ओले वीवी

जेएसआर 310 में परिभाषित java.time कक्षाओं द्वारा इन भयानक तारीख-समय वर्गों को सालों पहले दबा दिया गया था ।
तुलसी

0

बस लाइन डाल रहा हूं

DateFormatSymbols.getInstance().getMonths()[view.getMonth()] 

चाल चलेगा।


2
DateFormatSymbols भयानक तिथि-समय वर्गों का एक हिस्सा है जो अब की विरासत है, के रूप में गोद लेना है जेएसआर 310 । अब java.time कक्षाओं द्वारा इसे दबा दिया गया । 2019 में उनके उपयोग का सुझाव देना खराब सलाह है।
बेसिल बॉर्क

यह उत्तर स्वीकृत उत्तर की सामग्री को दोहराता है
बासिल बॉर्क

0

इसे बहुत ही सरल तरीके से उपयोग करने की कोशिश करें और इसे अपनी खुद की दुर्गंध की तरह कहें

public static String convertnumtocharmonths(int m){
         String charname=null;
         if(m==1){
             charname="Jan";
         }
         if(m==2){
             charname="Fev";
         }
         if(m==3){
             charname="Mar";
         }
         if(m==4){
             charname="Avr";
         }
         if(m==5){
             charname="Mai";
         }
         if(m==6){
             charname="Jun";
         }
         if(m==7){
             charname="Jul";
         }
         if(m==8){
             charname="Aou";
         }
         if(m==9){
             charname="Sep";
         }
         if(m==10){
             charname="Oct";
         }
         if(m==11){
             charname="Nov";
         }
         if(m==12){
             charname="Dec";
         }
         return charname;
     }

1
इस तरह का कोड लिखने की जरूरत नहीं है। जावा में अंतर्निहित है Month::getDisplayName
बासिल बॉर्क

इस बायलरप्लेट कोड को लिखने की आवश्यकता नहीं है। ऊपर पोस्ट मेरे जवाब की जाँच करें।
सड्डा हुसैन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.