Kod düzeyinden hallice işler...
C#,Java,Javascript,Asp.Net
3 Eylül 2012 Pazartesi
Itextsharp ParsePdf
public string ParsePdf(string fileName)
{
string text = string.Empty;
PdfReader reader = new PdfReader(fileName);
byte[] streanBytes = reader.GetPageContent(1);
PRTokeniser tokenizer = new PRTokeniser(streanBytes);
while (tokenizer.NextToken())
if (tokenizer.TokenType == PRTokeniser.TK_STRING)
{
text += tokenizer.StringValue;
}
return text;
}
24 Şubat 2012 Cuma
İşlem zamanı görüntüleme
Burada yaptığım linq tekniği ile işlem zamanında çalışan programların ismini hafızada ne kadar yer kapladığını ve id sini vermek.
class ProcessData
{
public Int32 Id;
public Int64 Memory;
String Name;
}
static void DisplayProcesses()
{
List<ProcessData> processes = new List<ProcessData>();
foreach (Process process in Process.GetProcesses())
{
ProcessData data = new ProcessData();
data.Id = process.Id;
data.Name = process.ProcessName;
data.Memory = process.WorkingSet64;
processes.Add(data);
}
processes.Dump();
}
static void Main()
{
DisplayProcesses();
}
class ProcessData
{
public Int32 Id;
public Int64 Memory;
String Name;
}
static void DisplayProcesses()
{
List<ProcessData> processes = new List<ProcessData>();
foreach (Process process in Process.GetProcesses())
{
ProcessData data = new ProcessData();
data.Id = process.Id;
data.Name = process.ProcessName;
data.Memory = process.WorkingSet64;
processes.Add(data);
}
processes.Dump();
}
static void Main()
{
DisplayProcesses();
}
13 Aralık 2011 Salı
Datatable ve çift dizili matris örneği
Datatable dan dönen değerleri çift dizili matrise çeviren method örneği.
private static string[][] ConvertToArray(DataTable veri, int dizi)
{
string[][] veriler = new string[veri.Rows.Count][];
int k = 0;
foreach (DataRow r in veri.Rows)
{
veriler[k] = new string[dizi];
for (int j = 0; j < veri.Columns.Count; j++)
{
veriler[k][j] = ToolKit.ToString(r[j]);
}
k++;
}
return veriler;
}
private static string[][] ConvertToArray(DataTable veri, int dizi)
{
string[][] veriler = new string[veri.Rows.Count][];
int k = 0;
foreach (DataRow r in veri.Rows)
{
veriler[k] = new string[dizi];
for (int j = 0; j < veri.Columns.Count; j++)
{
veriler[k][j] = ToolKit.ToString(r[j]);
}
k++;
}
return veriler;
}
18 Ekim 2011 Salı
String.RemoveMany (Extension Method)
public static string RemoveMany(this string dirtyString, params string[] stringsToRemove)
{
return dirtyString.Split(stringsToRemove, StringSplitOptions.None)
.Aggregate((sentence, next) => sentence + next)
{
return dirtyString.Split(stringsToRemove, StringSplitOptions.None)
.Aggregate((sentence, next) => sentence + next)
}
string dirty = "This is ABCa st)r(ing.";
string dirty2 = "tDEFes.t-";
string[] delims = new string[] { "ABC", "(", ")" };
Console.WriteLine(dirty.RemoveMany(delims));
Console.WriteLine(dirty2.RemoveMany("DEF", ".", "-"));
//output
"This is a string."
"test"
14 Ekim 2011 Cuma
Sql Data Source Enumerator Extensions
Mevcut ağ üzerindeki tüm kullanılabilir SQL sunucu örnekleri bir liste halinde alan method örneği.
public static IEnumerable<string> GetAvailableSqlServers(this SqlDataSourceEnumerator sqlDataSourceEnumerator)
{
return from row in SqlDataSourceEnumerator.Instance.GetDataSources().AsEnumerable()
orderby row.Field<string>("ServerName"), row.Field<string>("InstanceName")
select string.Concat(
row.Field<string>("ServerName"),
row.Field<string>("InstanceName") != string.Empty
? string.Concat("\\", row.Field<string>("InstanceName"))
: string.Empty);
}
public static IEnumerable<string> GetAvailableSqlServers(this SqlDataSourceEnumerator sqlDataSourceEnumerator)
{
return from row in SqlDataSourceEnumerator.Instance.GetDataSources().AsEnumerable()
orderby row.Field<string>("ServerName"), row.Field<string>("InstanceName")
select string.Concat(
row.Field<string>("ServerName"),
row.Field<string>("InstanceName") != string.Empty
? string.Concat("\\", row.Field<string>("InstanceName"))
: string.Empty);
}
HTML Document Extensions Methods
public static void AddScript(this HtmlDocument htmlDocument, string javaScript)
{
HtmlElement head = htmlDocument.GetElementsByTagName("head")[0];
HtmlElement scriptElement = htmlDocument.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptElement.DomElement;
element.text = javaScript;
head.AppendChild(scriptElement);
}
public static void AddCSS(this HtmlDocument htmlDocument, string cssFileName)
{
IHTMLDocument2 currentDocument = (IHTMLDocument2)htmlDocument.DomDocument;
int length = currentDocument.styleSheets.length;
IHTMLStyleSheet styleSheet = currentDocument.createStyleSheet(@"", length + 1);
using (TextReader reader = new StreamReader(cssFileName))
{
styleSheet.cssText = reader.ReadToEnd();
}
}
public static void DoPostBack(this HtmlDocument document)
{
document.InvokeScript("__doPostBack");
}
public static void DoPostBack(this HtmlDocument document, string eventTarget, string eventArgument)
{
document.InvokeScript("__doPostBack", new object[] { eventTarget, eventArgument });
}
public static HtmlElement GetElementByTitle(this HtmlDocument document, string title)
{
return (from x in document.All.Cast<HtmlElement>()
where x.GetAttribute("title") == title
select x).SingleOrDefault();
}
{
HtmlElement head = htmlDocument.GetElementsByTagName("head")[0];
HtmlElement scriptElement = htmlDocument.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptElement.DomElement;
element.text = javaScript;
head.AppendChild(scriptElement);
}
public static void AddCSS(this HtmlDocument htmlDocument, string cssFileName)
{
IHTMLDocument2 currentDocument = (IHTMLDocument2)htmlDocument.DomDocument;
int length = currentDocument.styleSheets.length;
IHTMLStyleSheet styleSheet = currentDocument.createStyleSheet(@"", length + 1);
using (TextReader reader = new StreamReader(cssFileName))
{
styleSheet.cssText = reader.ReadToEnd();
}
}
public static void DoPostBack(this HtmlDocument document)
{
document.InvokeScript("__doPostBack");
}
public static void DoPostBack(this HtmlDocument document, string eventTarget, string eventArgument)
{
document.InvokeScript("__doPostBack", new object[] { eventTarget, eventArgument });
}
public static HtmlElement GetElementByTitle(this HtmlDocument document, string title)
{
return (from x in document.All.Cast<HtmlElement>()
where x.GetAttribute("title") == title
select x).SingleOrDefault();
}
26 Temmuz 2011 Salı
Itextsharp File Attachment Event
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using iTextSharp.text.pdf;
using iTextSharp.text;
using iTextSharp.text.xml;
using iTextSharp.text.pdf.events;
using System.IO;
public class FileAttachmentEvent : PdfPCellEventForwarder
{
protected PdfWriter writer;
protected PdfFileSpecification fs;
protected String description;
public FileAttachmentEvent(PdfWriter Writer, PdfFileSpecification Fs, String Description)
{
this.writer = Writer;
this.fs = Fs;
this.description = Description;
}
public void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)
{
try
{
PdfAnnotation annonation = PdfAnnotation.CreateFileAttachment(writer, new Rectangle(position.GetLeft(20f), position.GetTop(15f),
position.GetLeft(5f), position.GetTop(5f)), description, fs);
annonation.Name = description;
writer.AddAnnotation(annonation);
}
catch (IOException)
{
throw;
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using iTextSharp.text.pdf;
using iTextSharp.text;
using iTextSharp.text.xml;
using iTextSharp.text.pdf.events;
using System.IO;
public class FileAttachmentEvent : PdfPCellEventForwarder
{
protected PdfWriter writer;
protected PdfFileSpecification fs;
protected String description;
public FileAttachmentEvent(PdfWriter Writer, PdfFileSpecification Fs, String Description)
{
this.writer = Writer;
this.fs = Fs;
this.description = Description;
}
public void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases)
{
try
{
PdfAnnotation annonation = PdfAnnotation.CreateFileAttachment(writer, new Rectangle(position.GetLeft(20f), position.GetTop(15f),
position.GetLeft(5f), position.GetTop(5f)), description, fs);
annonation.Name = description;
writer.AddAnnotation(annonation);
}
catch (IOException)
{
throw;
}
}
}
Kaydol:
Kayıtlar (Atom)