我是android编码实践的新手
ABB20180001
假设这是我的第一个ID,我希望使用共享的首选项将此值自动递增1并用作员工ID。
例如ABB20180002,ABB20180003,ABB20180004等。
答案 0 :(得分:5)
您可以使用特定的radix
将数字解析为长整数,将其递增,然后将其转换回String。
如果使用所有字母,则可以使用36
作为基数:
long number = Long.parseLong("ABB20180001", 36);
String incremented = Long.toString(number + 1, 36).toUpperCase();//"ABB20180002"
您的数字可能只是十六进制数字。在这种情况下,您可以使用16
作为基数,而不是如上所述的36
。
请注意,如果ABB
仅是前缀,则以上方法将不起作用(递增20将返回ABB2018000L
)。
如果"ABB"
仅是静态前缀,则可以使用
//if the prefix changes, a regex will be needed
String incremented = "ABB" + (Long.parseLong(string.replace("ABB", "")) + 1)
最后,如果"ABB"
可以更改,则可以使用这样的正则表达式(以下示例假定前缀的长度为3,请相应地更改):
String s = "ABB20180001";
String[] parts = s.split("(?<=[A-Z]{3})"); //split after a sequence of 3 letters
String res = parts[0] + (Long.parseLong(parts[1]) + 1);
答案 1 :(得分:-2)
您不能直接增加字母数字值。如果要这样做,您需要为此编写一些代码行
这是 activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<TextView
android:id="@+id/txt_autoincreament"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="click"
android:onClick="Click"/>
</LinearLayout>
这是 MainActivity.java
public class MainActivity extends AppCompatActivity {
TextView autoTextIncreament;
String stringValue="ABB";
long intValue=20180001;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
autoTextIncreament = findViewById(R.id.txt_autoincreament);
}
public void Click(View view){
autoTextIncreament.setText(getValue());
}
private String getValue() {
return stringValue+String.valueOf(intValue++);
}
}
希望这会对您有所帮助。