Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static String getMethodName(String fildeName) {
byte[] items = fildeName.getBytes();
items[0] = (byte) ((char) items[0] - 'a' + 'A');
return new String(items);
}
}