java read file line by line using bufferedreader

http://www.programcreek.com/2011/03/java-read-a-file-line-by-line-code-example/

How to check whether excel file is already opened with C#

Excel.Application oExcelApp; using Excel = Microsoft.Office.Interop.Excel; .... .... Excel.Workbook xlwkbook = (Excel.Workbook)System.Runtime.InteropServices.Marshal.BindToMoniker(@"C:\temp\book1.xlsx"); //True : already opened by human. False : not opened by human bool isOpened = xlwkbook.Application.Windows["book1.xlsx"].Visible; Trace.WriteLine(isVis);

Clean up COM object

http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects/159419#159419

How to use Visual C# to automate a running instance of an Office program

http://support2.microsoft.com/default.aspx?scid=kb;EN-US;316126             Excel.Application oExcelApp;             Excel.Workbook xlwkbook = (Excel.Workbook)System.Runtime.InteropServices.Marshal.BindToMoniker(@"C:\temp\booke1.xlsx");             Excel.Worksheet s = xlwkbook.ActiveSheet;             Range x = s.Cells[2, 1];             x.Value = "bbcccccbbbb";             MessageBox.Show(xlwkbook.Path);             //xlwkbook.Save();             //Release the reference.             oExcelApp = null;

Comparison Soap/BinaryFormatter to XmlSerialzer

이미지
http://www.dotneat.net/2009/03/22/NETSerializationUsingBinaryFormaterSoapFormatterAndXmlSerializer.aspx

Window Debugging

Windows Driver Kit(KDK) Download Download Windows Symbol Packages

Android Studio 프록시 네트웍 환경에서 사용하기.

프록시 세팅이 안 되어 있으니 처음에 실행하면 연결 안 됨. bin 폴더의 idea.properties 파일의 끝에 다음을 추가. disable.android.first.run=true 참고