當前位置: 首頁>>代碼示例>>Java>>正文


Java RandomStringUtils.randomNumeric方法代碼示例

本文整理匯總了Java中org.apache.commons.lang3.RandomStringUtils.randomNumeric方法的典型用法代碼示例。如果您正苦於以下問題:Java RandomStringUtils.randomNumeric方法的具體用法?Java RandomStringUtils.randomNumeric怎麽用?Java RandomStringUtils.randomNumeric使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.lang3.RandomStringUtils的用法示例。


在下文中一共展示了RandomStringUtils.randomNumeric方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: process

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
@Override
public Object process(AnnotationInfo ctx, Object value) throws Exception {
    if (!ctx.isAnnotationPresent(Digits.class)) {
        return value;
    }

    int integrals = ctx.getAnnotation(Digits.class).integer();
    String number = "0";
    if (integrals > 0) {
        number = RandomStringUtils.randomNumeric(integrals);
    }
    int fractions = ctx.getAnnotation(Digits.class).fraction();
    if (fractions > 0) {
        number += "." + RandomStringUtils.randomNumeric(fractions);
    }
    return ReflectionUtils.stringToNumber(number, value.getClass());
}
 
開發者ID:randomito,項目名稱:randomito-all,代碼行數:18,代碼來源:DigitsAnnotationPostProcessor.java

示例2: saveUser

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
@Test
public void saveUser () throws Exception {
	User         user     = new User();
	final String username = "admin" + RandomStringUtils.randomNumeric( 3 );
	user.setEmail( "[email protected]" )
		.setNickName( "披荊斬棘" )
		.setUsername( username )
		.setEnabled( true )
		.setPassword( passwordEncoder.encode( "123456" ) );
	aggregationService.saveUser( user );

	System.err.println( "username = " + username );

}
 
開發者ID:yujunhao8831,項目名稱:spring-boot-start-current,代碼行數:15,代碼來源:AggregationServiceTest.java

示例3: globalUniqueId

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
/**
 * (機器碼 + 進程號) + 隨機數 + 時間 + 計數器
 *
 * @param count 隨機數長度
 * @return 全局唯一ID
 */
private static String globalUniqueId ( final int count ) {
	// 隨機數,該工具類是線程安全的
	final String randomNumber = RandomStringUtils.randomNumeric( count );
	// 時間
	final String now = DATE_TIME_FORMATTER.format( LocalDateTime.now() );
	// 下一個數
	final long nextNumber = getNextNumber();
	return MP + Thread.currentThread().getId() + randomNumber + now + nextNumber;
}
 
開發者ID:yujunhao8831,項目名稱:spring-boot-start-current,代碼行數:16,代碼來源:GenerationCode.java

示例4: main

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
public static void main(String[] args) {
		String str = "";
		for(int i = 0; i < 5; i++)
		{
			//System.out.println(RandomStringUtils.randomNumeric(8));
			str += RandomStringUtils.randomNumeric(4)+",";
		}
		
		System.out.println(str);
		System.out.println(str.substring(0,str.lastIndexOf(",")));
//		for(int i = 0;i<10;i++){
//			method1();
//		}
		
//		if(Days.daysBetween(DateUtils.parseDate("2016-10-25 00:00:00"),DateTime.now()).getDays() == 0){
//			System.out.println("today");
//		}
		
		String dtStr = DateUtils.getCurrentTimeStr();
		dtStr = dtStr.substring(0, dtStr.lastIndexOf(" ")) + " 00:00:00";
		System.out.println(dtStr);

		regexPhoneTest("17700001111");

        setTimeout(1000,2000);
        System.out.println(JsonUtils.obj2json(getTimeout()));
    }
 
開發者ID:marlonwang,項目名稱:raven,代碼行數:28,代碼來源:Test.java

示例5: generateActivationKey

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
/**
 * Generate an activation key.
 *
 * @return the generated activation key
 */
public static String generateActivationKey() {
    return RandomStringUtils.randomNumeric(DEF_COUNT);
}
 
開發者ID:xm-online,項目名稱:xm-uaa,代碼行數:9,代碼來源:RandomUtil.java

示例6: generateResetKey

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
/**
* Generate a reset key.
*
* @return the generated reset key
*/
public static String generateResetKey() {
    return RandomStringUtils.randomNumeric(DEF_COUNT);
}
 
開發者ID:xm-online,項目名稱:xm-uaa,代碼行數:9,代碼來源:RandomUtil.java

示例7: generateResetKey

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
/**
 * Generate a reset key.
 *
 * @return the generated reset key
 */
public static String generateResetKey() {
    return RandomStringUtils.randomNumeric(DEF_COUNT);
}
 
開發者ID:yuexine,項目名稱:loafer,代碼行數:9,代碼來源:RandomUtil.java

示例8: generateResetKey

import org.apache.commons.lang3.RandomStringUtils; //導入方法依賴的package包/類
/**
 * Generate a reset key.
 *
 * @return the generated reset key
 */
public static String generateResetKey() {
	return RandomStringUtils.randomNumeric(DEF_COUNT);
}
 
開發者ID:codpra,項目名稱:alittler-blog,代碼行數:9,代碼來源:RandomUtil.java


注:本文中的org.apache.commons.lang3.RandomStringUtils.randomNumeric方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。