2016-09-20 5 views
1

나는 입력이 파일에서 주어진 자바 프로젝트에 종사하고있다. 입력 파일의 확장자는 .LYG로,이 파일의 데이터를 읽는 방법과이 확장이 사용 된 용도입니다. 이 파일이 손상 되었습니까? 사전에.LYG 파일 확장자

¬í sr java.util.Hashtable»%!Jä¸ F loadFactorI [email protected] w ¿ lt improvet Technology in Actiont team upt Contracts Centralt introducet New Product Introductiont offshoret Outsourcing & Offshoringt reduceq ~ t sackingt Talent Trackert teams upq ~ t securest Tech Investt offshoredq ~ t useq ~ t layoffq ~ t investedq ~ t joinst Executive Movest lawsuitt Intellectual Property Rightst raises $q ~ t appointq ~ t offshoringq ~ t announcesq ~ t optimisationq ~ t innovateq ~ t partnerq ~ t researchingt R&Dt saveq ~ t investq ~ t unveilsq ~ t introducesq ~ t acquirest M&A Trackert getting readyq ~ t to buyq ~ &t nabsq ~ t trainingq ~ t ipq ~ t outsourcedq ~ t signsq ~ t captiveq ~ t introducedq ~ t improvingq ~ t usesq ~ t patent lawsuitq ~ t releaseq ~ t puts $q ~ t researchq ~ t developingq ~ t partnersq ~ t steps downq ~ t take overq ~ &t bands togetherq ~ t optimiseq ~ t developmentq ~ t lays offq ~ t appointedq ~ t launchq ~ t launchingq ~ t acquireq ~ &t partneringq ~ t developsq ~ t brings inq ~ t inks pactq ~ t patentq ~ t skill buildingq ~ t outsourcingq ~ t makesq ~ t reducingq ~ t raisesq ~ t buysq ~ &t signs upq ~ t joinq ~ t raised $q ~ t leaving the companyq ~ t pumps $q ~ t appointsq ~ t step downq ~ t mergesq ~ &t left the companyq ~ t hiringq ~ t raisedq ~ t mergerq ~ &t r&dq ~ t strategic partnerq ~ t unveiledq ~ t skillq ~ t pumpsq ~ t outsourceq ~ t acquisitionq ~ &t sacksq ~ t buildingq ~ t secures $q ~ t india centerq ~ t introducingq ~ t mergingq ~ &t investsq ~ t makingq ~ t unveilq ~ t working onq ~ t investingq ~ t intellectual propertyq ~ t takes overq ~ &t partneredq ~ t innovationq ~ t m&aq ~ &t announceq ~ t offloadq ~ t iprq ~ t productivityq ~ t innovatesq ~ t brings in $q ~ t joinedq ~ t launchedq ~ x

감사

+0

파일을 제공 한 사람이 답변을 줄 수 있다고 생각하십니까? –

+0

이 프로젝트의 초기 작업자는 사용할 수 없습니다. – vin

답변

2

이 파일은 자바 직렬화에 의해 생성되는 데이터를 포함 : 파일은 다음과 같은 데이터가 포함되어 있습니다. Java는 객체 직렬화라고하는 메커니즘을 제공합니다. 객체는 객체의 데이터뿐만 아니라 객체의 유형 및 객체에 저장된 데이터 유형에 대한 정보를 포함하는 일련의 바이트로 표현 될 수 있습니다.

직렬화 된 개체를 파일에 기록한 후에는 파일에서 읽을 수 있고 deserialize됩니다. 즉, 개체를 나타내는 형식 정보와 바이트 및 해당 데이터를 사용하여 개체를 메모리에 다시 만들 수 있습니다.

전체 프로세스가 JVM과 무관하다는 점이 가장 인상적입니다. 즉, 한 플랫폼에서 객체를 직렬화하고 전혀 다른 플랫폼에서 직렬화 할 수 있다는 것입니다.