我想在java中将七段数字转换为普通字符串。例如,如果输入这样的字符串
输入
_ _ _ _ _ _ _ _
| _| _||_||_ |_ ||_||_|| |
||_ _| | _||_| ||_| _||_|
输出应该像
1234567890
我找到了这个 JavaScript答案,我正在尝试将其转换为 java。
现在我有:
private static void get7segment(String ascii)
{
String[] splited="909561432".split("");
HashMap<Integer,Integer> map=new HashMap<Integer,Integer>();
map.put(0, 63);
map.put(1, 6);
map.put(2, 91);
map.put(3, 79);
map.put(4, 102);
map.put(5, 109);
map.put(6, 125);
map.put(7, 7);
map.put(8, 127);
map.put(9, 111);
}
如有任何帮助,将不胜感激
海绵宝宝撒
相关分类