本文整理汇总了C#中System.Text.ASCIIEncoding类的典型用法代码示例。如果您正苦于以下问题:C# System.Text.ASCIIEncoding类的具体用法?C# System.Text.ASCIIEncoding怎么用?C# System.Text.ASCIIEncoding使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Text.ASCIIEncoding类属于命名空间,在下文中一共展示了System.Text.ASCIIEncoding类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExtractMetaData
public new Boolean ExtractMetaData()
{
// Create an Image object.
System.Drawing.Image image = new Bitmap(@"G:\projects\MugShot\test_photos\ClayShoot0001.JPG");
// Get the PropertyItems property from image.
PropertyItem[] propItems = image.PropertyItems;
// For each PropertyItem in the array, display the ID, type, and
// length.
int count = 0;
foreach (PropertyItem propItem in propItems)
{
Console.WriteLine(propItem.Id.ToString("x"));
Console.WriteLine(propItem.Type.ToString());
Console.WriteLine(propItem.Len.ToString());
Console.WriteLine("-----------------------");
count++;
}
// Convert the value of the second property to a string, and display
// it.
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
string manufacturer = encoding.GetString(propItems[1].Value);
Console.WriteLine("Manufacturer: {0}", manufacturer.ToString());
//need to fill this in with real metadata
MetaData = new ArrayList();
return true;
}
示例2: Response
private string Response()
{
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
byte[] serverbuff = new Byte[1024];
NetworkStream stream = GetStream();
int count = 0;
while (true)
{
byte[] buff = new Byte[2];
int bytes = stream.Read(buff, 0, 1);
if (bytes == 1)
{
serverbuff[count] = buff[0];
count++;
if (buff[0] == '\n')
{
break;
}
}
else
{
break;
}
}
string retval = enc.GetString(serverbuff, 0, count);
return retval;
}
示例3: ByteArrayToString
public static string ByteArrayToString(byte[] b)
{
string s;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
s = enc.GetString(b, 0, b.Length);
return s;
}
示例4: BatchUpload
public ActionResult BatchUpload(DateTime date, HttpPostedFileBase file, int? fundid, string text)
{
string s;
if (file != null)
{
byte[] buffer = new byte[file.ContentLength];
file.InputStream.Read(buffer, 0, file.ContentLength);
System.Text.Encoding enc = null;
if (buffer[0] == 0xFF && buffer[1] == 0xFE)
{
enc = new System.Text.UnicodeEncoding();
s = enc.GetString(buffer, 2, buffer.Length - 2);
}
else
{
enc = new System.Text.ASCIIEncoding();
s = enc.GetString(buffer);
}
}
else
s = text;
var id = PostBundleModel.BatchProcess(s, date, fundid);
if (id.HasValue)
return Redirect("/PostBundle/Index/" + id);
return RedirectToAction("Batch");
}
示例5: Encode
public static string Encode(string value)
{
var hash = System.Security.Cryptography.SHA1.Create();
var encoder = new System.Text.ASCIIEncoding();
var combined = encoder.GetBytes(value ?? "");
return BitConverter.ToString(hash.ComputeHash(combined)).ToLower().Replace("-", "");
}
示例6: GetAuthorizationToken
/// <summary>
/// Function for getting a token from ACS using Application Service principal Id and Password.
/// </summary>
public static AADJWTToken GetAuthorizationToken(string tenantName, string appPrincipalId, string password)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(String.Format(StringConstants.AzureADSTSURL, tenantName));
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
string postData = "grant_type=client_credentials";
postData += "&resource=" + HttpUtility.UrlEncode(StringConstants.GraphPrincipalId);
postData += "&client_id=" + HttpUtility.UrlEncode(appPrincipalId);
postData += "&client_secret=" + HttpUtility.UrlEncode(password);
byte[] data = encoding.GetBytes(postData);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;
using (Stream stream = request.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
using (var response = request.GetResponse())
{
using (var stream = response.GetResponseStream())
{
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(AADJWTToken));
AADJWTToken token = (AADJWTToken)(ser.ReadObject(stream));
return token;
}
}
}
开发者ID:michaelsrichter,项目名称:AccidentalFish.AspNet.Identity.Azure,代码行数:30,代码来源:DirectoryDataServiceAuthorizationHelper.cs
示例7: Post
public string Post(Uri uri, NameValueCollection input)
{
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
WebRequest request = WebRequest.Create(uri);
string strInput = GetInputString(input);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = strInput.Length;
Stream writeStream = request.GetRequestStream();
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
byte[] bytes = encoding.GetBytes(strInput);
writeStream.Write(bytes, 0, bytes.Length);
writeStream.Close();
using (WebResponse response = request.GetResponse())
{
using (Stream responseStream = response.GetResponseStream())
{
StreamReader streamReader = new StreamReader(responseStream);
return streamReader.ReadToEnd();
}
}
}
示例8: Encrypt
/// <summary>
/// 指定されたUIDを暗号化して返します。
/// </summary>
/// <param name="uid">MUID</param>
/// <returns></returns>
public static string Encrypt(string uid)
{
var encryptStr = "";
if (!string.IsNullOrEmpty(uid))
{
if (CheckMuid(uid))
{
uid = uid.Replace(".", "");
if(uid.Length%2!=0)
{
uid = uid + "0";
}
var asciiEncoding = new System.Text.ASCIIEncoding();
for (int i = 0; i < uid.Length / 2; i++)
{
var subUid = uid.Substring(i * 2, 2);
encryptStr = encryptStr + subUid + ((asciiEncoding.GetBytes(uid.Substring(i * 2, 1))[0] + asciiEncoding.GetBytes(uid.Substring(i * 2 + 1, 1))[0]) % 15).ToString("x");
}
char[] arr = encryptStr.ToCharArray();
Array.Reverse(arr);
encryptStr = new string(arr);
}
else
{
encryptStr = "00000";
}
}
else
{
encryptStr = "00000";
}
return encryptStr;
}
示例9: ByteArrayToStr
public static string ByteArrayToStr(byte[] dBytes)
{
string str;
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
str = enc.GetString(dBytes);
return str;
}
示例10: GetExifPropertyTagDateTime
public static string GetExifPropertyTagDateTime(string file)
{
const int PropertyTagDateTime = 0x0132;
string DateTime = "";
try {
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
using (FileStream stream = File.OpenRead(file)) {
Image image = Image.FromStream(stream, true, false);
PropertyItem[] propItems = image.PropertyItems;
// For each PropertyItem in the array, display the ID, type, and length and value.
// 0x0132 _=
foreach (PropertyItem propItem in propItems) {
if (propItem.Id == PropertyTagDateTime) {
DateTime = encoding.GetString(propItem.Value);
break;
}
}
}
} catch (Exception) {
// if there was an error (such as read a defect image file), just ignore
}
return(DateTime);
}
示例11: GetCurrentAirInstall
public string GetCurrentAirInstall(string Location)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
DirectoryInfo dInfo = new DirectoryInfo(Location);
DirectoryInfo[] subdirs = null;
try
{
subdirs = dInfo.GetDirectories();
}
catch { return "0.0.0.0"; }
string latestVersion = "0.0.1";
foreach (DirectoryInfo info in subdirs)
{
latestVersion = info.Name;
}
string AirLocation = Path.Combine(Location, latestVersion, "deploy");
if (!File.Exists(Path.Combine(Client.ExecutingDirectory, "ClientLibCommon.dat")))
{
File.Copy(Path.Combine(AirLocation, "lib", "ClientLibCommon.dat"), Path.Combine(Client.ExecutingDirectory, "ClientLibCommon.dat"));
}
if (!File.Exists(Path.Combine(Client.ExecutingDirectory, "gameStats_en_US.sqlite")))
{
File.Copy(Path.Combine(AirLocation, "assets", "data", "gameStats", "gameStats_en_US.sqlite"), Path.Combine(Client.ExecutingDirectory, "gameStats_en_US.sqlite"));
}
Copy(Path.Combine(AirLocation, "assets", "images", "abilities"), Path.Combine(Client.ExecutingDirectory, "Assets", "abilities"));
Copy(Path.Combine(AirLocation, "assets", "images", "champions"), Path.Combine(Client.ExecutingDirectory, "Assets", "champions"));
var VersionAIR = File.Create(Path.Combine("Assets", "VERSION_AIR"));
VersionAIR.Write(encoding.GetBytes(latestVersion), 0, encoding.GetBytes(latestVersion).Length);
VersionAIR.Close();
return latestVersion;
}
示例12: Main
static void Main(string[] args)
{
/*
* Make sure this path contains the umundoNativeCSharp.dll!
*/
SetDllDirectory("C:\\Users\\sradomski\\Desktop\\build\\umundo\\lib");
org.umundo.core.Node node = new org.umundo.core.Node();
Publisher pub = new Publisher("pingpong");
PingReceiver recv = new PingReceiver();
Subscriber sub = new Subscriber("pingpong", recv);
node.addPublisher(pub);
node.addSubscriber(sub);
while (true)
{
Message msg = new Message();
String data = "data";
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
byte[] buffer = enc.GetBytes(data);
msg.setData(buffer);
msg.putMeta("foo", "bar");
Console.Write("o");
pub.send(msg);
System.Threading.Thread.Sleep(1000);
}
}
示例13: Encode
public void Encode(IPEndPoint local_endpoint)
{
Socket sock = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
sock.Bind (local_endpoint);
sock.Listen (5);
// for (;;)
// {
// allDone.Reset ();
// Console.Error.WriteLine ("Waiting for connection on port {0}", local_endpoint);
// sock.BeginAccept (new AsyncCallback (this.AcceptCallback), sock);
// allDone.WaitOne ();
// }
Console.Error.WriteLine ("Waiting for connection on port {0}", local_endpoint);
Socket client = sock.Accept();
NetworkStream stream = new NetworkStream(client);
Console.Error.WriteLine ("Got connection from {0}", client.RemoteEndPoint);
byte[] buffer = new byte[1024];
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
Stream stdin = Console.OpenStandardInput(buffer.Length);
while (stdin.Read(buffer, 0, buffer.Length) != 0)
{
Console.WriteLine("Data: {0}", encoding.GetString(buffer));
stream.Write(buffer, 0, buffer.Length);
}
Console.Error.WriteLine ("Closing socket");
sock.Close ();
}
示例14: CutString
/// <summary>
/// 截取指定长度字符串,汉字为2个字符
/// </summary>
/// <param name="inputString">要截取的目标字符串</param>
/// <param name="len">截取长度</param>
/// <returns>截取后的字符串</returns>
public static string CutString(string inputString, int len)
{
System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding();
int tempLen = 0;
string tempString = "";
byte[] s = ascii.GetBytes(inputString);
for (int i = 0; i < s.Length; i++)
{
if ((int)s[i] == 63)
tempLen += 2;
else
tempLen += 1;
try
{
tempString += inputString.Substring(i, 1);
}
catch
{
break;
}
if (tempLen > len)
break;
}
return tempString;
}
示例15: GetCurrentGameInstall
public string GetCurrentGameInstall(string GameLocation)
{
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
DirectoryInfo dInfo = new DirectoryInfo(Path.Combine(GameLocation, "projects", "lol_game_client", "filearchives"));
DirectoryInfo[] subdirs = null;
try
{
subdirs = dInfo.GetDirectories();
}
catch { return "0.0.0.0"; }
string latestVersion = "0.0.1";
foreach (DirectoryInfo info in subdirs)
{
latestVersion = info.Name;
}
string ParentDirectory = Directory.GetParent(GameLocation).FullName;
Copy(Path.Combine(ParentDirectory, "Config"), Path.Combine(Client.ExecutingDirectory, "Config"));
Copy(Path.Combine(GameLocation, "projects", "lol_game_client"), Path.Combine(Client.ExecutingDirectory, "RADS", "projects", "lol_game_client"));
File.Copy(Path.Combine(GameLocation, "RiotRadsIO.dll"), Path.Combine(Client.ExecutingDirectory, "RADS", "RiotRadsIO.dll"));
var VersionAIR = File.Create(Path.Combine("RADS", "VERSION_LOL"));
VersionAIR.Write(encoding.GetBytes(latestVersion), 0, encoding.GetBytes(latestVersion).Length);
VersionAIR.Close();
return latestVersion;
}