Base 64编码和解码示例代码


214

有谁知道如何使用Base64在Base64中解码和编码字符串。我正在使用以下代码,但无法正常工作。

String source = "password"; 
byte[] byteArray = source.getBytes("UTF-16"); 
Base64 bs = new Base64(); 
//bs.encodeBytes(byteArray); 
System.out.println( bs.encodeBytes(byteArray)); 
//bs.decode(bs.encodeBytes(byteArray));
System.out.println(bs.decode(bs.encodeBytes(byteArray)));

1
您必须导入此文件import android.util.Base64;,然后才能根据需要使用Base64.encodeToStringBase64.decode
Zohab Ali

Answers:


490

第一:

  • 选择一种编码。通常,UTF-8是一个不错的选择。坚持绝对对双方都有效的编码。很少使用UTF-8或UTF-16以外的东西。

传输端:

  • 将字符串编码为字节(例如text.getBytes(encodingName)
  • 使用Base64该类将字节编码为base64
  • 传输base64

接收端:

  • 接收base64
  • 使用Base64该类将base64解码为字节
  • 将字节解码为字符串(例如new String(bytes, encodingName)

所以像这样:

// Sending side
byte[] data = text.getBytes("UTF-8");
String base64 = Base64.encodeToString(data, Base64.DEFAULT);

// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, "UTF-8");

或搭配StandardCharsets

// Sending side
byte[] data = text.getBytes(StandardCharsets.UTF_8);
String base64 = Base64.encodeToString(data, Base64.DEFAULT);

// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, StandardCharsets.UTF_8);

您能给我确切的代码,对您有很大的帮助吗?我正在使用,但无法正常工作。字符串来源=“密码”;byte [] byteArray = source.getBytes(“ UTF-16”); Base64 bs =新的Base64(); //bs.encodeBytes(byteArray); System.out.println(bs.encodeBytes(byteArray)); //bs.decode(bs.encodeBytes(byteArray)); System.out.println(bs.decode(bs.encodeBytes(byteArray)));
最大

9
@max:“它不起作用”永远无法很好地描述正在发生的事情。虽然会编辑我的帖子。
乔恩·斯基特

3
还要注意,您不应像调用静态方法一样调用静态方法……
Jon Skeet

3
如果您这样说,它将可以工作String base64 = Base64.encodeToString(data,Base64.NO_WRAP);
乔伊

1
@portfoliobuilder:绝对不是。UTF-8保证是Java中的有效编码:请参阅docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html。当然,这些天我会StandardCharsets.UTF_8改为指定。我已经更新了答案,以指定您应该对字符集的存在充满信心,但是我几乎总是使用UTF-8。
乔恩·斯基特

18

对于在搜索有关如何解码使用编码的字符串的信息时最终在这里遇到的其他人Base64.encodeBytes(),这是我的解决方案:

// encode
String ps = "techPass";
String tmp = Base64.encodeBytes(ps.getBytes());

// decode
String ps2 = "dGVjaFBhC3M=";
byte[] tmp2 = Base64.decode(ps2); 
String val2 = new String(tmp2, "UTF-8"); 

另外,我支持旧版Android,因此我使用的是http://iharder.net/base64上的 Robert Harder的Base64库


10

对于Kotlin mb来说,最好使用以下命令:

fun String.decode(): String {
    return Base64.decode(this, Base64.DEFAULT).toString(charset("UTF-8"))
}

fun String.encode(): String {
    return Base64.encodeToString(this.toByteArray(charset("UTF-8")), Base64.DEFAULT)
}

例:

Log.d("LOGIN", "TEST")
Log.d("LOGIN", "TEST".encode())
Log.d("LOGIN", "TEST".encode().decode())

1
这些扩展功能的命名是可怕的。我强烈建议您使用encodeToBase64或类似的东西。
罗尔夫(Rolf

它们绝对不清晰明显。告诉我:“解码”或“编码”是什么意思?数以千计的解码/编码算法...如果您需要Base64和Hex,该怎么办?那么您如何命名这些方法?
罗尔夫(Rolf

更不用说那里的其他Base64标准了。
罗尔夫(Rolf

对于此用例而言,显而易见。如果我需要其他算法,我将永远不会将其用作扩展方法。
brunql

1
尽管如此,我还是希望像这样:'toBase64()'和'fromBase64()'最少。这样,我无需阅读任何文档即可知道该方法将做什么。请记住:“读取的代码多于编写的代码”。
罗尔夫(Rolf

8

如果您使用Kotlin而不是像这样使用

编码

val password = "Here Your String"
val data = password.toByteArray(charset("UTF-8"))
val base64 = Base64.encodeToString(data, Base64.DEFAULT)

解码

val datasd = Base64.decode(base64, Base64.DEFAULT)
val text = String(datasd, charset("UTF-8"))

3
或者,您可以使用Charsets.UTF_8代替charset(“ UTF-8”)。
makovkastar

@makovkastar刚刚确认,现在是StandardCharsets.UTF_8
马特

7

就像是

String source = "password"; 
byte[] byteArray;
try {
    byteArray = source.getBytes("UTF-16");
    System.out.println(new String(Base64.decode(Base64.encode(byteArray,
           Base64.DEFAULT), Base64.DEFAULT)));
} catch (UnsupportedEncodingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

5
您的答案暗示在base64中编码密码是一种好习惯。实际上,并非所有人都能简单地对其进行解码。
海因里希

2

加密:

byte[] encrpt= text.getBytes("UTF-8");
String base64 = Base64.encodeToString(encrpt, Base64.DEFAULT);

解密:

byte[] decrypt= Base64.decode(base64, Base64.DEFAULT);
String text = new String(decrypt, "UTF-8");

1

根据先前的回答,我正在使用以下实用程序方法,以防有人使用。

    /**
 * @param message the message to be encoded
 *
 * @return the enooded from of the message
 */
public static String toBase64(String message) {
    byte[] data;
    try {
        data = message.getBytes("UTF-8");
        String base64Sms = Base64.encodeToString(data, Base64.DEFAULT);
        return base64Sms;
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }

    return null;
}

/**
 * @param message the encoded message
 *
 * @return the decoded message
 */
public static String fromBase64(String message) {
    byte[] data = Base64.decode(message, Base64.DEFAULT);
    try {
        return new String(data, "UTF-8");
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }

    return null;
}


0

“ java.util.Base64”类提供了以Base64格式编码和解码信息的功能。

如何获得Base64编码器?

Encoder encoder = Base64.getEncoder();

如何获得Base64解码器?

Decoder decoder = Base64.getDecoder();

如何编码数据?

Encoder encoder = Base64.getEncoder();
String originalData = "java";
byte[] encodedBytes = encoder.encode(originalData.getBytes());

如何解码数据?

Decoder decoder = Base64.getDecoder();
byte[] decodedBytes = decoder.decode(encodedBytes);
String decodedStr = new String(decodedBytes);

您可以在此链接上获得更多详细信息。


-1
    <?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".BaseActivity">
   <EditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:id="@+id/edt"
       android:paddingTop="30dp"
       />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv1"
        android:text="Encode"
        android:textSize="20dp"
        android:padding="20dp"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv2"

        android:textSize="20dp"
        android:padding="20dp"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv3"
        android:text="decode"
        android:textSize="20dp"
        android:padding="20dp"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv4"
        android:textSize="20dp"
        android:padding="20dp"


        />
</LinearLayout>

这是为了通过android studio中的base64进行编码和解码
Asif Ali,

请在评论中更新您的评论。还要在单个答案中发布Java和XML。
Android

编写一些解释以及一些代码始终是一个好习惯。谢谢!
surajs1n

-1
package net.itempire.virtualapp;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Base64;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class BaseActivity extends AppCompatActivity {
EditText editText;
TextView textView;
TextView textView2;
TextView textView3;
TextView textView4;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_base);
        editText=(EditText)findViewById(R.id.edt);
        textView=(TextView) findViewById(R.id.tv1);
        textView2=(TextView) findViewById(R.id.tv2);
        textView3=(TextView) findViewById(R.id.tv3);
        textView4=(TextView) findViewById(R.id.tv4);
        textView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
             textView2.setText(Base64.encodeToString(editText.getText().toString().getBytes(),Base64.DEFAULT));
            }
        });

        textView3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                textView4.setText(new String(Base64.decode(textView2.getText().toString(),Base64.DEFAULT)));

            }
        });


    }
}

-2

Android的API byte[],以Base64String编码器

byte[] data=new byte[];
String Base64encodeString=android.util.Base64.encodeToString(data, android.util.Base64.DEFAULT);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.