An error was reported when compiling the project in eclipse:
SVN cleanup failed–previous operation have not finished; Run cleanup if it was interrupted
After restarting eclipse to try to compile again, or to report this error, so had to search the Internet.
The solution to the problem, refer to the link: http://blog.csdn.net/luojian520025/article/details/22196865
The cause of the problem, see link: http://blog.csdn.net/superch0054/article/details/38668017
Problem Solving Analysis: SVN's operation is stored in the "Work queue". The "Work queue" is in the Work_queue table of the embedded database wc.db.
Workaround Specific steps:
1. Download Sqlite3.exe, the official website link: http://www.sqlite.org/download.html, the download obtains is the Compress package, after decompression inside is sqlite3.exe;
2. Place the sqlite3.exe at the root of the project, which is similar to. svn;
3. In the DOS window, through the command: cd/d your project directory, into the project root directory;
4. Typing command: sqlite3. svn/wc.db "SELECT * from Work_queue", enter after you can see some information, I see is: [plain] view plain copy D:\android_ Workspace\superdj_new>sqlite3. Svn/wc.db "SELECT * from Work_queue" 10760| (File-remove Libs/togglebuttonlib.jar) 5. Typing command: sqlite3. svn/wc.db "Delete from Work_queue", enter;
6. Re-enter command: sqlite3. svn/wc.db "SELECT * from Work_queue", no information is seen after carriage return, indicating that the "Work_queue" queue has been emptied.
At this point, the problem has been solved. When you start eclipse, the operation is performed normally when you perform a clean compilation operation on the project.