|  |  | @ -139,8 +139,8 @@ public class Pinyin4jUtil { | 
			
		
	
		
			
				
					|  |  |  |                 } else if (((int) c >= 65 && (int) c <= 90) | 
			
		
	
		
			
				
					|  |  |  |                         || ((int) c >= 97 && (int) c <= 122)) {//英文
 | 
			
		
	
		
			
				
					|  |  |  |                     temp[i] = new String[]{String.valueOf(srcChar[i])}; | 
			
		
	
		
			
				
					|  |  |  |                 } else { | 
			
		
	
		
			
				
					|  |  |  |                     temp[i] = new String[]{""}; | 
			
		
	
		
			
				
					|  |  |  |                 } else {//非汉字全盘返回即可
 | 
			
		
	
		
			
				
					|  |  |  |                     temp[i] = new String[]{String.valueOf(srcChar[i])}; | 
			
		
	
		
			
				
					|  |  |  |                 } | 
			
		
	
		
			
				
					|  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |             String[] pingyinArray = exchange(temp); | 
			
		
	
	
		
			
				
					|  |  | 
 |