Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//PduUtils is distributed under the terms of the Apache License version 2.0

public class Main {
    public static byte[] encodeUcs2UserData(String text) {
        try {
            // UTF-16 Big-Endian, no Byte Order Marker at start
            return text.getBytes("UTF-16BE");
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}