gpt4 book ai didi

java - Android:将文本输入转换为 ASCII 并将其打印为字符串

转载 作者:太空狗 更新时间:2023-10-29 13:20:13 25 4
gpt4 key购买 nike

这是我的代码

EditText textExtract = (EditText) findViewById(R.id.textInput);
String textInput = textExtract.getText().toString();
TextView textOut = (TextView) findViewById(R.id.textOutput);

我从用户那里获取输入并将其存储在字符串 textInput 中。现在,如何将字符串 textInput 转换为我想使用 textView textOut 打印的 ASCII 值字符串。

例如,

Input = "abcd"
Output = 979899100

最佳答案

public static long toAscii(String s){
StringBuilder sb = new StringBuilder();
String ascString = null;
long asciiInt;
for (int i = 0; i < s.length(); i++){
sb.append((int)s.charAt(i));
char c = s.charAt(i);
}
ascString = sb.toString();
asciiInt = Long.parseLong(ascString);
return asciiInt;
}



String outputText = toAscii(textInput).toString();
textOut.setText(outputText);

这可能对你的情况有帮助

关于java - Android:将文本输入转换为 ASCII 并将其打印为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29899389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com